@charset "UTF-8";
/*****************************************************/
/* @import url("https://fonts.googleapis.com/css2?family=Charm:wght@400;700&amp;family=Jost:wght@300;400;500;600;700&amp;family=Oregano&amp;family=Roboto:wght@300;400;500;700;900&amp;display=swap"); */
/*** ZONA DECLARARE VARIABILE CSS ************************/
:root {
  --thm-ff-body: 'Jost', sans-serif;
  --thm-ff-heading: 'Jost', sans-serif;
  --thm-ff-p: 'Jost', sans-serif;
  --thm-ff-jost: 'Jost', sans-serif;
  --thm-ff-fontawesome: "Font Awesome 6 Pro";
  --thm-ff-roboto: 'Roboto', sans-serif;
  --thm-ff-oregano: 'Oregano', cursive;
  --thm-ff-charm: 'Charm', cursive;
  --thm-common-white: #ffffff;
  --thm-common-black-solid: #000;
  --thm-common-black: #010F1C;
  --thm-yellow-1: #FFB342;
  --thm-yellow-2: #FFD43A;
  --thm-yellow-3: #FFB21D;
  --thm-pink-1: #FD4B6B;
  --thm-pink-2: #FD2D6C;
  --thm-pink-3: #FF296A;
  --thm-pink-4: #FF3494;
  --thm-green-dark: #115061;
  --thm-green-1: #31B757;
  --thm-khaki-1: #AB9774;
  --thm-blue-1: #0989FF;
  --thm-orange-1: #FF6736;
  --thm-heading-primary: #010F1C;
  --thm-heading-secondary: #021D35;
  --thm-theme-favorite: brown;
  --thm-grey-1: #F6F7F9;
  --thm-grey-2: #ECF2F7;
  --thm-grey-3: #CAD4DB;
  --thm-grey-4: #F8F8F8;
  --thm-grey-5: #EFF0ED;
  --thm-grey-6: #EFF1F5;
  --thm-grey-7: #F6F6F6;
  --thm-grey-8: #EAE4DE;
  --thm-grey-9: #E5E9F2;
  --thm-text-body: #55585B;
  --thm-text-1: #767A7D;
  --thm-text-2: #55585B;
  --thm-text-3: #A0A2A4;
  --thm-text-4: #7D7F82;
  --thm-text-5: #888A8C;
  --thm-text-6: #90969B;
  --thm-theme-primary: #47883e;
  --thm-theme-secondary: #999;
  --thm-theme-brown: #BD844C;
  --thm-theme-green: #678E61;
  --thm-footer-grey-1: #F4F7F9;
  --thm-border-primary: #EAEBED;
  --thm-border-secondary: #F0F2F4;
  --thm-border-3: #E4E5E9;
  --thm-border-4: #E6E7E8;
}
/**** Layout *******************************************/
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: var(--thm-ff-body);
  font-size: 14px;
  font-weight: normal;
  color: var(--thm-text-body);
  line-height: 26px;
}

.white-popup {
  position: relative;
  background: #FFF;
  padding: 10px;
  width: auto;
  max-width: 500px;
  margin: 5px auto;
}

a { text-decoration: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--thm-ff-heading); color: var(--thm-heading-primary); margin-top: 0px;
  font-weight: 700; line-height: 1.2; -webkit-transition: color 0.3s 0s ease-out; -moz-transition: color 0.3s 0s ease-out;
  -ms-transition: color 0.3s 0s ease-out; -o-transition: color 0.3s 0s ease-out; transition: color 0.3s 0s ease-out; }

/*** Headlineuri **************************/
h1 { font-size: 40px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
h4 { font-size: 24px; }
h5 { font-size: 20px; }
h6 { font-size: 16px; }

/*** Altele **************************/
ul { margin: 0px; padding: 0px;}
p { font-family: var(--thm-ff-p); font-size: 14px; font-weight: 400; color: var(--thm-text-body); margin-bottom: 15px; line-height: 26px; }
.bPic { border: solid 3px var(--thm-grey-8); border-radius: 10px; }


/*** Linkuri / Butoane *****************************/
a:not([href]):not([class]), a:not([href]):not([class]):hover {  color: inherit; text-decoration: none; }
a:focus, .button:focus { text-decoration: none; outline: none; }
a:focus, a:hover { color: inherit; text-decoration: none; }
a, button { color: inherit; outline: none; border: none; background: transparent; }
button:hover { cursor: pointer; }
button:focus { outline: 0; }

.uppercase { text-transform: uppercase; }
.capitalize { text-transform: capitalize; }

/*** Textboxuri / textarea samd **************/
input[type=text], input[type=email], input[type=tel], input[type=number], input[type=password], input[type=url], textarea {
  outline: none; background-color: #fff; height: 56px; width: 100%;
  line-height: 56px; font-size: 14px; color: var(--thm-common-black); padding-left: 26px; padding-right: 26px;
  border: 1px solid #E0E2E3; }
input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=url]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder { color: #95999D; }
input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=url]::-moz-placeholder,
textarea::-moz-placeholder { color: #95999D; }
input[type=text]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=number]:-moz-placeholder,
input[type=password]:-moz-placeholder,
input[type=url]:-moz-placeholder,
textarea:-moz-placeholder { color: #95999D; }
input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=url]:-ms-input-placeholder,
textarea:-ms-input-placeholder { color: #95999D; }
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=number]::placeholder,
input[type=password]::placeholder,
input[type=url]::placeholder,
textarea::placeholder { color: #95999D; }
input[type=text]:focus, input[type=email]:focus, input[type=tel]:focus, input[type=number]:focus, input[type=password]:focus,
input[type=url]:focus, textarea:focus { border-color: var(--thm-common-black); }
input[type=text]:focus::placeholder,
input[type=email]:focus::placeholder,
input[type=tel]:focus::placeholder,
input[type=number]:focus::placeholder,
input[type=password]:focus::placeholder,
input[type=url]:focus::placeholder,
textarea:focus::placeholder { opacity: 0; }
textarea { line-height: 1.4; padding-top: 17px; padding-bottom: 17px; }
input[type=color] { appearance: none; -moz-appearance: none; -webkit-appearance: none; background: none;
  border: 0; cursor: pointer; height: 100%; width: 100%; padding: 0; border-radius: 50%; }

/**** PlaceHolder-urile *************************************/  
*::-moz-selection { background: var(--thm-common-black); color: var(--thm-common-white); text-shadow: none; }
::-moz-selection { background: var(--thm-common-black); color: var(--thm-common-white); text-shadow: none; }
::selection { background: var(--thm-common-black); color: var(--thm-common-white); text-shadow: none; }
*::-moz-placeholder { color: var(--thm-common-black); font-size: 14px; opacity: 1; }
*::placeholder { color: var(--thm-common-black); font-size: 14px; opacity: 1; }

.w-coupon-info-details span, .w-collection-hotspot-content, .w-return-customer-forgot a::after, .w-cart-checkout-shipping-option label::after, .w-cart-checkout-shipping-option label::before, .w-cart-plus,
.w-cart-minus, .w-shop-widget-categories ul li a::after, .w-shop-widget-categories ul li a span, .w-shop-widget-checkbox-circle-number, .w-product-details-thumb-wrapper .nav-tabs .nav-link::after, .w-product-details-review-input-eye span, .w-product-details-tab-line, .w-product-sm-item-5, .w-product-sm-thumb-5 img, .w-product-action-4, .w-product-thumb-4 img, .w-product-price-4, .w-product-add-to-cart-4, .w-product-price-wrapper-4, .w-best-add-to-cart-btn, .w-product-tag-3 span, .w-product-thumb-3 img, .w-product-action-3, .w-special-hotspot-content, .w-product-tag-2 a::after, .w-product-action-2, .w-product-thumb-2 img, .w-product-thumb img, .w-product-tab-line, .w-product-action, .w-product-add-cart-btn-large-wrapper, .w-product-list-thumb a img, .w-product-tooltip, .w-product-category-thumb a img, .w-category-title-2, .w-category-btn-2, .w-category-content-2 span, .w-category-content-2::after, .w-category-thumb-3::after, .w-category-thumb-3::before, .w-category-btn-3, .w-category-price-4, .w-category-thumb-5, .w-work-item, .w-work-icon span, .w-history-nav-year::after, .profile__tab .w-tab-line, .profile__main-thumb-edit label, .w-profile-input-eye span, .w-contact-input-eye span, .w-contact-btn, .w-login-top p a::after, .w-login-mail::after, .w-login-input-eye span, .w-login-forgot a::after, .w-cta-thumb img, .w-brand-item img, .w-instagram-item::after, .w-instagram-item-2::after, .w-instagram-icon, .w-instagram-icon-2, .w-slider-nav-item, .w-footer-widget-content ul li a::after, .w-blog-grid-thumb img, .w-blog-list-thumb img, .w-blog-thumb-2 img, .w-blog-meta-2 a::after, .w-postbox-details-input-eye span, .w-category-menu nav ul li::after, .w-category-menu nav ul li.has-dropdown > a:not(.mega-menu-title)::after, .w-category-menu nav ul li a span, .w-category-mobile-menu ul li.has-dropdown > a .dropdown-toggle-btn, .w-category-mobile-menu ul li.has-dropdown > a .dropdown-toggle-btn i, .w-mobile-menu, .w-main-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn, .w-main-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn i, .main-menu > nav > ul > li.has-dropdown > a::after, .main-menu > nav > ul > li > .w-submenu li.has-dropdown > a::after, .main-menu > nav > ul > li .w-mega-menu, .home-menu-thumb, .home-menu-thumb::after, .shop-mega-menu-img img, .w-header-side-menu ul li.has-dropdown > a::after, .w-header-side-menu ul li .mega-menu, .w-header-side-menu ul li .mega-menu .mega-menu-brand a img, .w-menu-line, .w-search-area, .w-product-tab-2 .nav-tabs .nav-link .w-product-tab-tooltip, .w-tab-line, .offcanvas__categoryssss ul li.has-dropdown > a .dropdown-toggle-btn, .offcanvas__categoryssss ul li .mega-menu, .offcanvas__categoryssss ul li .mega-menu .mega-menu-brand a img, .offcanvas__lang-selected-lang, .offcanvas__lang-selected-currency, .offcanvas__currency-selected-lang, .offcanvas__currency-selected-currency, .offcanvas__lang-selected-lang::after, .offcanvas__lang-selected-currency::after, .offcanvas__currency-selected-lang::after, .offcanvas__currency-selected-currency::after, .offcanvas__lang-list, .offcanvas__currency-list, .w-swiper-dot .swiper-pagination-bullet, .w-swiper-dot-border .swiper-pagination-bullet, .w-swiper-scrollbar, .w-pulse-border::after, .w-pulse-border::before, .w-link-btn-2::after, .w-link-btn-2::before, .w-link-btn-line::after, .w-link-btn-line-2::after {
-webkit-transition: all 0.3s 0s ease-out; -moz-transition: all 0.3s 0s ease-out; -ms-transition: all 0.3s 0s ease-out;
-o-transition: all 0.3s 0s ease-out; transition: all 0.3s 0s ease-out; }

/*** Butoanele **********************************/
.mean-container .mean-nav ul li > a.mean-expand i, .main-menu > nav > ul > li > .w-submenu, .w-accordion .accordion-button .w-accordion-plus, .w-accordion .accordion-button .w-accordion-plus::after, .w-accordion .accordion-button .w-accordion-plus::before, .back-to-top-wrapper, a,
button, p, input, select, textarea, li, .transition-3 {
-webkit-transition: all 0.3s 0s ease-out; -moz-transition: all 0.3s 0s ease-out; -ms-transition: all 0.3s 0s ease-out;
-o-transition: all 0.3s 0s ease-out; transition: all 0.3s 0s ease-out; }
.back-to-top-btn { -webkit-transition: transform 0.3s 0s ease-out; -moz-transition: transform 0.3s 0s ease-out;
-ms-transition: transform 0.3s 0s ease-out; -o-transition: transform 0.3s 0s ease-out; transition: transform 0.3s 0s ease-out; }
.w-collection-btn .w-btn, .w-product-details-views > span svg, .w-product-action-btn-2 svg, .w-header-welcome span svg, .w-btn-border-2 svg, .w-link-btn svg, .w-link-btn-3 span svg, .w-link-btn-line svg, .w-link-btn-line-2 svg {
-webkit-transform: translateY(-1px); -moz-transform: translateY(-1px); -ms-transform: translateY(-1px);
-o-transform: translateY(-1px); transform: translateY(-1px); }

.w-order-details-icon span svg, .w-cart-list tr td .w-cart-action-btn svg, .w-shop-top-tab .nav-tabs .nav-item .nav-link svg, .w-product-details-thumb-wrapper .nav-tabs .nav-link .nav-video-btn svg, .w-product-details-thumb-arrow button svg, .w-product-details-action-sm-btn svg, .w-product-details-wishlist-btn svg, .w-product-action-btn-3 svg, .w-special-arrow button svg, .w-product-action-btn svg, .w-product-add-cart-btn-large svg, .w-app-btn .app-icon span svg, .w-brand-slider-arrow button svg, .w-testimonial-arrow button svg, .w-feature-icon span svg, .w-feature-icon-5 span svg, .w-slider-feature-icon-3 span svg, .w-slider-arrow-4 button svg, .w-blog-grid-meta span span svg, .w-blog-grid-tab .nav-tabs .nav-link svg, .w-blog-meta-2 span svg, .w-sidebar-search-input button svg, .w-postbox-details-meta span svg, .w-postbox-details-navigation-icon span svg, .w-category-menu nav ul li a span svg, .w-category-mobile-menu ul li a svg, .w-main-menu-mobile ul li > a svg, .w-header-search-input-5 span svg, .w-header-action-5 button svg, .w-header-action-5 a svg, .w-header-info-item a span svg, .w-header-search-btn button svg, .w-header-login-icon span svg, .w-header-contact-icon span svg, .w-hotspot svg, .w-pagination ul li a svg, .w-pagination ul li span svg, .w-swiper-arrow button svg, .w-btn svg, .w-btn-green svg, .w-load-more-btn svg, .w-filter-btn svg {
-webkit-transform: translateY(-2px); -moz-transform: translateY(-2px); -ms-transform: translateY(-2px); -o-transform: translateY(-2px);
transform: translateY(-2px); }

.w-product-add-to-cart-4 svg, .w-best-add-to-cart-btn svg, .w-category-add-to-cart-4 svg, .w-footer-contact-icon span svg, .w-header-search-2 button svg {
-webkit-transform: translateY(-3px); -moz-transform: translateY(-3px); -ms-transform: translateY(-3px);
-o-transform: translateY(-3px); transform: translateY(-3px); }
.w-product-badge span, .w-product-category > a, .w-product-title, .w-product-rating-text span, .w-product-price, .w-product-tab .nav-tabs .nav-item .nav-link, .w-product-countdown-inner ul li, .w-product-countdown-inner ul li span, .w-product-add-cart-btn-large, .w-product-gadget-categories-title, .w-product-gadget-categories-list ul li a, .w-product-gadget-btn .w-link-btn, .w-product-gadget-banner-price, .w-product-gadget-banner-title, .w-product-tooltip, .w-banner-btn .w-link-btn, .w-banner-content span, .w-banner-content p, .w-banner-title, .w-product-banner-bg-text, .w-product-banner-subtitle, .w-product-banner-title, .w-product-banner-price span, .w-product-banner-price p, .w-product-category-content p, .w-product-category-title, .w-feature-title, .w-feature-content p, .w-slider-title, .w-slider-content > span, .w-footer-widget-title, .w-footer-widget-content ul li a, .w-footer-desc, .w-footer-talk span, .w-footer-talk h4, .w-footer-contact-content p, .w-footer-copyright p, .w-blog-meta-date span, .w-blog-tag > span, .w-blog-tag a, .w-blog-title, .w-blog-content p, .w-category-menu-btn, .w-category-menu nav ul li a, .main-menu.menu-style-1 > nav > ul > li > a, .w-header-welcome p, .w-header-top-menu-item > span, .w-header-top-menu-item ul li a, .w-header-search-box input, .w-header-search-category .nice-select, .w-header-login-content span, .w-header-login-title, .w-header-action-badge, .w-header-contact-content h5, .w-header-contact-content p, .w-section-title, .offcanvas__contact-title, .w-all-font-roboto *:not(i) {
font-family: var(--thm-ff-roboto); }
.w-collection-countdown .w-product-countdown ul li, .w-collection-countdown .w-product-countdown ul li span, .w-product-item-3 .w-product-add-cart-btn-large-wrapper .w-product-add-cart-btn-large, .w-product-action-btn-3 .w-product-tooltip, .w-product-action-btn-2 .w-product-tooltip, .w-footer-style-2 .w-footer-desc, .w-footer-style-2 .w-footer-widget-title, .w-footer-style-2 .w-footer-widget ul li a, .w-footer-style-2 .w-footer-talk span, .w-footer-style-2 .w-footer-talk h4, .w-footer-style-2 .w-footer-contact-content p, .w-footer-style-2 .w-footer-copyright p, .w-header-top-black .w-header-top-menu-item > span {
font-family: var(--thm-ff-jost); }
.w-collection-countdown .w-product-countdown ul li:not(:last-child)::after, .w-category-mobile-menu ul li.has-dropdown > a .dropdown-toggle-btn, .w-main-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn, .w-header-side-menu ul li.has-dropdown > a::after, .offcanvas__categoryssss ul li.has-dropdown > a .dropdown-toggle-btn, .w-offcanvas-category-toggle::after {
font-family: var(--thm-ff-fontawesome); }

/* Transformari */
.w-collection-countdown .w-product-countdown ul li:not(:last-child)::after, .w-special-arrow button, .w-featured-slider-arrow button:not(:last-child)::after, .w-testimonial-arrow button, .w-testimonial-arrow-5 button:not(:last-child)::after, .w-feature-border-2 .row [class*=col-] .w-feature-item-2::after, .w-feature-border-3 .w-feature-item-2:not(:last-child)::after, .w-feature-border-5 .row [class*=col-] .w-feature-item-5::after, .w-slider-2-dot.w-swiper-dot, .w-slider-3-dot.w-swiper-dot, .w-slider-feature-item-3:not(:last-child)::after, .w-slider-arrow-3 button, .w-slider-4-dot.w-swiper-dot, .w-slider-arrow-4 button, .w-sidebar-search-input button, .w-postbox-details-meta span:not(:last-child)::after, .w-category-mobile-menu ul li.has-dropdown > a .dropdown-toggle-btn, .w-main-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn, .w-header-search-input-box-5 button, .w-header-search-input-5 span, .w-header-side-menu ul li.has-dropdown > a::after, .w-product-tab-2 .nav-tabs .nav-link:not(:first-child)::after, .breadcrumb__list span:not(:last-child)::after, .offcanvas__categoryssss ul li.has-dropdown > a .dropdown-toggle-btn, .w-offcanvas-category-toggle::after {
-webkit-transform: translateY(-50%); -moz-transform: translateY(-50%); -ms-transform: translateY(-50%); 
-o-transform: translateY(-50%); transform: translateY(-50%); }
.w-best-banner-slider-dot-5, .w-category-add-to-cart-4, .w-testimonial-shape-gradient { -webkit-transform: translateX(-50%);
-moz-transform: translateX(-50%); -ms-transform: translateX(-50%); -o-transform: translateX(-50%); transform: translateX(-50%); }
.w-collection-thumb, .w-collection-thumb-4, .w-special-thumb img, .w-trending-banner-thumb, .w-featured-thumb, .w-banner-thumb, .w-banner-thumb-2, .w-banner-thumb-4, .w-banner-full-thumb, .w-best-banner-thumb-5, .w-category-thumb-3, .w-category-thumb-4, .w-category-thumb-5, .w-author-bg {
position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/*** Diverse **************************************/
.w-img img { width: 100%; }
.m-img img { max-width: 100%; }
.fix { overflow: hidden; }
.clear { clear: both; }
.z-index-1 { z-index: 1; }
.z-index-11 { z-index: 11; }

.overflow-y-visible { overflow-x: hidden; overflow-y: visible; }
.p-relative { position: relative; }
.p-absolute { position: absolute; }
.include-bg { background-position: center; background-size: cover; background-repeat: no-repeat;}
.color1-tema { color: var(--thm-green-dark) !important; }
.color2-tema { color: var(--thm-green-1) !important; }
.color3-tema { color: var(--thm-theme-brown) !important; }

.demo { -webkit-transition: color 0.3s 0s linear; -moz-transition: color 0.3s 0s linear; -ms-transition: color 0.3s 0s linear;
  -o-transition: color 0.3s 0s linear; transition: color 0.3s 0s linear; -webkit-transition: color 0.3s linear, transform 0.2s ease;
  -moz-transition: color 0.3s linear, transform 0.2s ease; -ms-transition: color 0.3s linear, transform 0.2s ease;
  -o-transition: color 0.3s linear, transform 0.2s ease; transition: color 0.3s linear, transform 0.2s ease; }
div.demo img { margin-left: 10px; }

.body-overlay { background-color: var(--thm-common-black); height: 100%; width: 100%;
  position: fixed; top: 0; z-index: 9999; left: 0; opacity: 0; visibility: hidden;
  -webkit-transition: all 0.3s 0s ease-out; -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out; -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out; }  
.body-overlay:hover { cursor: url("../images/icon/cross-out.png"), pointer;}
.body-overlay.opened {  opacity: 0.7; visibility: visible; }

@media (max-width: 767px) { .hide-mobile { display: none !important; } }


/* DropCap */
.w-dropcap::first-letter { font-size: 90px; font-weight: 500; float: left;
  text-align: center; color: var(--thm-common-black); margin-right: 5px;
  line-height: inherit; text-transform: capitalize; }
.class { stroke-dasharray: 189px, 191px; stroke-dashoffset: 0px;
}
/* gutter for x axis */
.w-gx-20 { --bs-gutter-x: 20px; }
@media only screen and (min-width: 992px) and (max-width: 1199px) {
.w-gx-20 { --bs-gutter-x: 20px; }}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .w-gx-20 { --bs-gutter-x: 20px; }}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .w-gx-20 { --bs-gutter-x: 15px; }}
@media (max-width: 575px) {
  .w-gx-20 { --bs-gutter-x: 10px; }
}
.w-gx-20 [class*=col-] { padding-right: calc(var(--bs-gutter-x) * 0.5); padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y); }
/* gutter for x axis */
.w-gx-30 { --bs-gutter-x: 30px;}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .w-gx-30 { --bs-gutter-x: 30px; }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .w-gx-30 { --bs-gutter-x: 30px; }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .w-gx-30 { --bs-gutter-x: 15px;}
}
@media (max-width: 575px) {
  .w-gx-30 { --bs-gutter-x: 10px; }
}
.w-gx-30 [class*=col-] { padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5); margin-top: var(--bs-gutter-y);}

/* gutter for x axis */
.w-gx-40 { --bs-gutter-x: 40px; }
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .w-gx-40 { --bs-gutter-x: 40px; }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .w-gx-40 { --bs-gutter-x: 30px; }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .w-gx-40 { --bs-gutter-x: 30px; }
}
@media (max-width: 575px) {
  .w-gx-40 { --bs-gutter-x: 15px; }
}
.w-gx-40 [class*=col-] { padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5); margin-top: var(--bs-gutter-y); }

/**** Default SPATIEREA ********************************/
.w-categroy-plr-85 {
  padding-left: 85px;
  padding-right: 85px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .w-categroy-plr-85 {
    padding-left: 40px;
    padding-right: 40px;
  }
}

/**** Buton BACK TO TOP ********************************/
.back-to-top-wrapper { position: fixed; right: 20px; bottom: 0; height: 44px; width: 44px; cursor: pointer; display: block;
border-radius: 50%; z-index: 9999; opacity: 0; visibility: hidden; }
@media (max-width: 575px) { .back-to-top-wrapper { right: 20px; bottom: 20px; } }
.back-to-top-wrapper.back-to-top-btn-show { visibility: visible; opacity: 1; bottom: 150px; }
.back-to-top-btn { display: inline-block; width: 44px; height: 44px; line-height: 44px;
text-align: center; background: var(--thm-common-black); box-shadow: 0px 8px 16px rgba(3, 4, 28, 0.3);
color: var(--thm-common-white); border-radius: 50%; }
.back-to-top-btn svg {
-webkit-transform: translateY(-2px); -moz-transform: translateY(-2px); -ms-transform: translateY(-2px);
-o-transform: translateY(-2px); transform: translateY(-2px); }
.back-to-top-btn:hover { -webkit-transform: translateY(-4px); -moz-transform: translateY(-4px);
-ms-transform: translateY(-4px); -o-transform: translateY(-4px); transform: translateY(-4px); }


/*** Stiluri BUTOANE **************************************/
.w-btn { display: inline-block; font-family: var(--thm-ff-jost); font-weight: 400; font-size: 16px; 
background-color: var(--thm-common-black); padding: 9px 26px; color: var(--thm-common-white); 
border: 1px solid var(--thm-common-black); }
.w-btn:hover { color: var(--thm-common-black); background-color: transparent; }
.w-btn-2 { font-family: var(--thm-ff-roboto); font-weight: 500; font-size: 14px; background-color: var(--thm-theme-primary);
padding: 9px 26px 7px; border-radius: 6px; border: 0; }
.w-btn-2:hover { background-color: var(--thm-common-black); color: var(--thm-common-white); }
.w-btn-white { background-color: var(--thm-common-white); padding: 7px 26px; box-shadow: 0px 1px 2px rgba(1, 15, 28, 0.1);
color: var(--thm-common-black); padding: 9px 29px; }
.w-btn-white:hover { background-color: var(--thm-common-black); color: var(--thm-common-white); }
.w-btn-blue { background-color: var(--thm-theme-primary); }
.w-btn-border { background-color: transparent; border: 1.5px solid var(--thm-common-black); color: var(--thm-common-black);
padding: 8px 29px; }
.w-btn-border svg { -webkit-transform: translateY(-2px) !important; -moz-transform: translateY(-2px) !important;
-ms-transform: translateY(-2px) !important; -o-transform: translateY(-2px) !important; transform: translateY(-2px) !important; }
.w-btn-border:hover { background-color: var(--thm-theme-secondary); border-color: var(--thm-theme-secondary); 
color: var(--thm-common-white); }
.w-btn-border-sm { padding: 5px 25px; }
.w-btn-border-white { border-color: rgba(255, 255, 255, 0.3); color: var(--thm-common-white); }
.w-btn-border-white:hover { color: var(--thm-common-white); background-color: var(--thm-common-black); border-color: var(--thm-common-black); }
.w-btn-border-white-sm { padding: 4px 26px 6px; }
.w-btn-border-2 { border: 2px solid rgba(4, 9, 45, 0.1); font-weight: 500; font-size: 13px; color: var(--thm-common-black);
background-color: transparent; padding: 8px 17px; }
.w-btn-border-2 span { margin-left: 3px; }
.w-btn-border-2:hover { background-color: var(--thm-theme-primary); border-color: var(--thm-theme-primary);
color: var(--thm-common-white); }
.w-btn-border-primary:hover { background-color: var(--thm-theme-primary); border-color: var(--thm-theme-primary);
color: var(--thm-common-white); }
.w-btn-green { font-weight: 400; font-size: 16px; color: var(--thm-common-white); display: inline-block; padding: 9px 48px;
border-radius: 24px; background-color: var(--thm-theme-green); }
.w-btn-green:hover { background-color: #42603D; color: var(--thm-common-white); }
.w-btn-green-sm { padding: 4px 24px; }

/* Butoane OFFCANVAS */
.w-btn-offcanvas { display: inline-block; font-size: 14px; font-weight: 600; color: var(--thm-common-white);
background: var(--thm-theme-primary); text-align: center; font-family: var(--thm-ff-space); padding: 9px 22px;
letter-spacing: -0.02em; position: relative; z-index: 1; text-transform: capitalize; }
.w-btn-offcanvas i { padding-left: 5px; }
.w-btn-offcanvas:hover { background-color: var(--thm-common-black); color: var(--thm-common-white); }
.w-pulse-border::after, .w-pulse-border::before { position: absolute; content: ""; left: 50%; top: 50%; 
-webkit-transform: translate(-50%, -50%); -moz-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%); transform: translate(-50%, -50%); width: 100%; height: 100%; border-radius: 50%;
border: 1px solid rgba(255, 255, 255, 0.4); animation: borderanimate2 2s linear infinite; animation-delay: 0s;
-webkit-animation-delay: 0s; animation-delay: 0s; z-index: -1; }
.w-pulse-border::before { animation-delay: 0.7s; }
.w-link-btn { display: inline-block; font-weight: 500; font-size: 13px; color: var(--thm-common-black);
-webkit-transition: color 0.3s ease-in-out; -moz-transition: color 0.3s ease-in-out; -ms-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out; transition: color 0.3s ease-in-out; }
.w-link-btn i, .w-link-btn svg { -webkit-transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
-moz-transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); -ms-transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
-o-transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
margin-left: 2px; }
.w-link-btn:hover { color: var(--thm-theme-primary); }
.w-link-btn:hover svg { -webkit-transform: translate(3px, -1px); -moz-transform: translate(3px, -1px); -ms-transform: translate(3px, -1px);
  -o-transform: translate(3px, -1px); transform: translate(3px, -1px); }
.w-link-btn:hover i { -webkit-transform: translateX(3px); -moz-transform: translateX(3px); -ms-transform: translateX(3px);
-o-transform: translateX(3px); transform: translateX(3px); }
.w-link-btn-2 { font-weight: 400; font-size: 16px; color: var(--thm-common-black); position: relative; }
.w-link-btn-2::after, .w-link-btn-2::before { position: absolute; content: ""; left: auto; right: 0; bottom: 0; width: 100%; 
height: 1px; background-color: var(--thm-common-black); }
.w-link-btn-2::before { width: 0%; background-color: var(--thm-theme-primary); z-index: 1; }
.w-link-btn-2:hover { color: var(--thm-theme-primary); }
.w-link-btn-2:hover svg, .w-link-btn-2:hover i { -webkit-transform: translate(3px, -1px); -moz-transform: translate(3px, -1px);
-ms-transform: translate(3px, -1px); -o-transform: translate(3px, -1px); transform: translate(3px, -1px); }
.w-link-btn-2:hover::before { left: 0; right: auto; width: 100%; background-color: var(--thm-theme-primary); }
.w-link-btn-3 { font-size: 16px; color: var(--thm-common-black); }
.w-link-btn-3 span { display: inline-block; -webkit-transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
-moz-transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); -ms-transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
-o-transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.w-link-btn-3:hover { color: var(--thm-theme-primary); }
.w-link-btn-3:hover span { -webkit-transform: translateX(3px) translateY(0); -moz-transform: translateX(3px) translateY(0);
-ms-transform: translateX(3px) translateY(0); -o-transform: translateX(3px) translateY(0); transform: translateX(3px) translateY(0); }

/* Buton LINKURI */
.w-link-btn-line { font-size: 16px; line-height: 10px; text-transform: uppercase; color: var(--thm-common-black); position: relative; }
.w-link-btn-line::after { position: absolute; content: ""; left: auto; right: 0; width: 0%; height: 1px; bottom: 3px;
background-color: var(--thm-theme-primary); }
.w-link-btn-line:hover { color: var(--thm-theme-primary); }
.w-link-btn-line:hover::after { width: 100%; left: 0; right: auto; }
.w-link-btn-line-2 { font-size: 16px; line-height: 10px; color: var(--thm-common-black); position: relative; }
.w-link-btn-line-2::after { position: absolute; content: ""; left: auto; right: 0; width: 100%; height: 1px; bottom: 2px;
background-color: var(--thm-common-black); }
.w-link-btn-line-2 svg, .w-link-btn-line-2 i { -webkit-transition: all 0.2s 0s ease-out; -moz-transition: all 0.2s 0s ease-out;
-ms-transition: all 0.2s 0s ease-out; -o-transition: all 0.2s 0s ease-out;  transition: all 0.2s 0s ease-out; }
.w-link-btn-line-2:hover { color: var(--thm-theme-primary); }
.w-link-btn-line-2:hover::after { width: 100%; left: 0; right: auto; background-color: var(--thm-theme-primary); }
.w-hamburger-btn-2 { width: 44px; height: 44px; background-color: rgba(255, 255, 255, 0.14); border-radius: 6px; 
position: relative; }
.w-hamburger-btn-2 span { position: absolute; top: 14px; left: 13px; display: block; width: 16px; height: 2px; 
background-color: var(--thm-common-white); border-radius: 10px; }
.w-hamburger-btn-2 span:nth-child(2) { top: 21px; width: 20px; }
.w-hamburger-btn-2 span:nth-child(3) { top: 28px; }
.w-load-more-btn { display: inline-block; padding: 5px 33px; border: 1px solid var(--thm-common-black); font-weight: 400;
font-size: 16px; color: var(--thm-common-black); }
.w-load-more-btn:hover { color: var(--thm-common-white); background-color: var(--thm-theme-primary);
border-color: var(--thm-theme-primary); }
.w-filter-btn { font-weight: 500; font-size: 14px; line-height: 1; color: var(--thm-common-white); background-color: var(--thm-common-black);
display: inline-block; padding: 13px 35px 9px; border: 1px solid var(--thm-common-black); }
.w-filter-btn:hover { color: var(--thm-common-black); background-color: var(--thm-common-white); }
@media only screen and (min-width: 768px) and (max-width: 991px) { 
.w-filter-btn {  padding-left: 30px; padding-right: 30px; } }
.w-product-list-add-to-cart-btn { font-weight: 500; font-size: 14px; color: var(--thm-common-white); 
background-color: var(--thm-common-black);  display: inline-block; padding: 5px 20px; }
.w-product-list-add-to-cart-btn:hover { background-color: var(--thm-theme-primary); color: var(--thm-common-white); }
.w-menu-showcase-btn { font-weight: 500; font-size: 14px; padding: 11px 26px 9px; border: 0; color: var(--thm-common-white);
background-color: var(--thm-theme-primary); }
.w-menu-showcase-btn-2 { border-radius: 6px; font-family: var(--thm-ff-roboto); }
.w-menu-showcase-btn:hover { background-color: var(--thm-common-black); color: var(--thm-common-white); }

/*** ANIMATII CSS **************************************/
/* pulse effect animation */
@-webkit-keyframes w-pulse {
  0% { -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
  70% { -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);  box-shadow: 0 0 0 45px rgba(255, 255, 255, 0); }
  100% { -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
@-moz-keyframes w-pulse {
  0% { -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
  70% { -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0); box-shadow: 0 0 0 45px rgba(255, 255, 255, 0); }
  100% { -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
@-ms-keyframes w-pulse {
  0% { -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
  70% { -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0); box-shadow: 0 0 0 45px rgba(255, 255, 255, 0); }
  100% { -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
@keyframes w-pulse {
  0% { -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
  70% { -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0); box-shadow: 0 0 0 45px rgba(255, 255, 255, 0); }
  100% { -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
@-webkit-keyframes w-pulse-2 {
  0% { -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
  70% { -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0); box-shadow: 0 0 0 45px rgba(255, 255, 255, 0); }
  100% { -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
@-moz-keyframes w-pulse-2 {
  0% { -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
  70% { -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0); box-shadow: 0 0 0 45px rgba(255, 255, 255, 0); }
  100% { -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
@-ms-keyframes w-pulse-2 {
  0% { -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
  70% { -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0); box-shadow: 0 0 0 45px rgba(255, 255, 255, 0); }
  100% { -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
@keyframes w-pulse-2 {
  0% { -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
  70% { -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0); box-shadow: 0 0 0 45px rgba(255, 255, 255, 0); }
  100% { -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
@-webkit-keyframes w-shake {
  10%, 90% { -webkit-transform: translate3d(-1px, 0, 0); transform: translate3d(-1px, 0, 0); }
  20%, 80% { -webkit-transform: translate3d(2px, 0, 0); transform: translate3d(2px, 0, 0); }
  30%, 50%, 70% { -webkit-transform: translate3d(-4px, 0, 0); transform: translate3d(-4px, 0, 0); }
  40%, 60% { -webkit-transform: translate3d(4px, 0, 0); transform: translate3d(4px, 0, 0); }
}
@-moz-keyframes w-shake {
  10%, 90% { -webkit-transform: translate3d(-1px, 0, 0); transform: translate3d(-1px, 0, 0); }
  20%, 80% { -webkit-transform: translate3d(2px, 0, 0); transform: translate3d(2px, 0, 0); }
  30%, 50%, 70% { -webkit-transform: translate3d(-4px, 0, 0); transform: translate3d(-4px, 0, 0); }
  40%, 60% { -webkit-transform: translate3d(4px, 0, 0); transform: translate3d(4px, 0, 0); }
}
@-ms-keyframes w-shake {
  10%, 90% { -webkit-transform: translate3d(-1px, 0, 0); transform: translate3d(-1px, 0, 0); }
  20%, 80% { -webkit-transform: translate3d(2px, 0, 0); transform: translate3d(2px, 0, 0); }
  30%, 50%, 70% { -webkit-transform: translate3d(-4px, 0, 0); transform: translate3d(-4px, 0, 0); }
  40%, 60% { -webkit-transform: translate3d(4px, 0, 0); transform: translate3d(4px, 0, 0); }
}
@keyframes w-shake {
  10%, 90% { -webkit-transform: translate3d(-1px, 0, 0); transform: translate3d(-1px, 0, 0); }
  20%, 80% { -webkit-transform: translate3d(2px, 0, 0); transform: translate3d(2px, 0, 0); }
  30%, 50%, 70% { -webkit-transform: translate3d(-4px, 0, 0); transform: translate3d(-4px, 0, 0); }
  40%, 60% { -webkit-transform: translate3d(4px, 0, 0); transform: translate3d(4px, 0, 0); }
}
@-webkit-keyframes borderanimate2 {
  0% { transform: translate(-50%, -50%) scale(0.8); }
  60% { opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}
@-moz-keyframes borderanimate2 {
  0% { transform: translate(-50%, -50%) scale(0.8); }
  60% { opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}
@-ms-keyframes borderanimate2 {
  0% { transform: translate(-50%, -50%) scale(0.8); }
  60% { opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}
@keyframes borderanimate2 {
  0% { transform: translate(-50%, -50%) scale(0.8); }
  60% { opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}
@-webkit-keyframes w-rotate-center {
  0% { -webkit-transform: rotate(0); -moz-transform: rotate(0); -ms-transform: rotate(0);
    -o-transform: rotate(0); transform: rotate(0);}
  100% { -webkit-transform: rotate(360deg); -moz-transform: rotate(360deg); -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg); transform: rotate(360deg); }
}
@-moz-keyframes w-rotate-center {
  0% { -webkit-transform: rotate(0); -moz-transform: rotate(0); -ms-transform: rotate(0);
    -o-transform: rotate(0); transform: rotate(0); }
  100% {
    -webkit-transform: rotate(360deg); -moz-transform: rotate(360deg); -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg); transform: rotate(360deg); }
}
@-ms-keyframes w-rotate-center {
  0% { -webkit-transform: rotate(0); -moz-transform: rotate(0); -ms-transform: rotate(0);
    -o-transform: rotate(0); transform: rotate(0); }
  100% { -webkit-transform: rotate(360deg); -moz-transform: rotate(360deg); -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg); transform: rotate(360deg); }
}
@keyframes w-rotate-center {
  0% { -webkit-transform: rotate(0); -moz-transform: rotate(0); -ms-transform: rotate(0);
    -o-transform: rotate(0); transform: rotate(0); }
  100% { -webkit-transform: rotate(360deg); -moz-transform: rotate(360deg); -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg); transform: rotate(360deg); }
}
@-webkit-keyframes w-mobile-view {
  0%, 10% { -webkit-transform: translateY(0%); -moz-transform: translateY(0%); -ms-transform: translateY(0%);
    -o-transform: translateY(0%); transform: translateY(0%); }
  50%, 60% { -webkit-transform: translateY(-57%); -moz-transform: translateY(-57%); -ms-transform: translateY(-57%);
    -o-transform: translateY(-57%); transform: translateY(-57%); }
  90%, 100% { -webkit-transform: translateY(0%); -moz-transform: translateY(0%); -ms-transform: translateY(0%);
    -o-transform: translateY(0%); transform: translateY(0%); }
}
@-moz-keyframes w-mobile-view {
  0%, 10% { -webkit-transform: translateY(0%); -moz-transform: translateY(0%); -ms-transform: translateY(0%);
    -o-transform: translateY(0%); transform: translateY(0%); }
  50%, 60% { -webkit-transform: translateY(-57%); -moz-transform: translateY(-57%); -ms-transform: translateY(-57%);
    -o-transform: translateY(-57%); transform: translateY(-57%); }
  90%, 100% { -webkit-transform: translateY(0%); -moz-transform: translateY(0%); -ms-transform: translateY(0%);
    -o-transform: translateY(0%); transform: translateY(0%); }
}
@-ms-keyframes w-mobile-view {
  0%, 10% { -webkit-transform: translateY(0%); -moz-transform: translateY(0%); -ms-transform: translateY(0%);
    -o-transform: translateY(0%); transform: translateY(0%); }
  50%, 60% { -webkit-transform: translateY(-57%); -moz-transform: translateY(-57%); -ms-transform: translateY(-57%);
    -o-transform: translateY(-57%); transform: translateY(-57%); }
  90%, 100% { -webkit-transform: translateY(0%); -moz-transform: translateY(0%); -ms-transform: translateY(0%);
    -o-transform: translateY(0%); transform: translateY(0%); }
}
@keyframes w-mobile-view {
  0%, 10% { -webkit-transform: translateY(0%); -moz-transform: translateY(0%); -ms-transform: translateY(0%);
    -o-transform: translateY(0%); transform: translateY(0%); }
  50%, 60% { -webkit-transform: translateY(-57%); -moz-transform: translateY(-57%); -ms-transform: translateY(-57%);
    -o-transform: translateY(-57%); transform: translateY(-57%); }
  90%, 100% { -webkit-transform: translateY(0%); -moz-transform: translateY(0%); -ms-transform: translateY(0%);
    -o-transform: translateY(0%); transform: translateY(0%); }
}
@-webkit-keyframes w-svg-line {
  100% { stroke-dashoffset: 350; }
}
@-moz-keyframes w-svg-line {
  100% { stroke-dashoffset: 350; }
}
@-ms-keyframes w-svg-line {
  100% { stroke-dashoffset: 350; }
}
@keyframes w-svg-line {
  100% { stroke-dashoffset: 350; }
}
@-webkit-keyframes w-border-loader {
  0% { stroke-dashoffset: -356px; stroke-dasharray: 356px, 366px; }
  95% { stroke-dashoffset: 0; stroke-dasharray: 356px, 366px; }
  100% { stroke-dashoffset: 0; stroke-dasharray: 0, 366px; }
}
@-moz-keyframes w-border-loader {
  0% { stroke-dashoffset: -356px; stroke-dasharray: 356px, 366px; }
  95% { stroke-dashoffset: 0; stroke-dasharray: 356px, 366px; }
  100% { stroke-dashoffset: 0; stroke-dasharray: 0, 366px; }
}
@-ms-keyframes w-border-loader {
  0% { stroke-dashoffset: -356px; stroke-dasharray: 356px, 366px; }
  95% { stroke-dashoffset: 0; stroke-dasharray: 356px, 366px; }
  100% { stroke-dashoffset: 0; stroke-dasharray: 0, 366px; }
}
@keyframes w-border-loader {
  0% { stroke-dashoffset: -356px; stroke-dasharray: 356px, 366px; }
  95% { stroke-dashoffset: 0; stroke-dasharray: 356px, 366px; }
  100% { stroke-dashoffset: 0; stroke-dasharray: 0, 366px; }
}

/*** PRELOADERUL *********************************/
#loading { background-color: #fff; height: 100%; width: 100%; position: fixed; z-index: 999999; margin-top: 0px; top: 0px; }
#loading-center { width: 100%; height: 100%; position: relative; }
#loading-center-absolute { position: absolute; left: 50%; top: 50%; width: 25%; transform: translate(-50%, -50%); }
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
#loading-center-absolute { width: 40%; } }
@media only screen and (min-width: 992px) and (max-width: 1199px) {
#loading-center-absolute { width: 40%; } }
@media only screen and (min-width: 768px) and (max-width: 991px) {
#loading-center-absolute { width: 45%; } }
@media only screen and (min-width: 576px) and (max-width: 767px) {
#loading-center-absolute { width: 50%; } }
@media (max-width: 575px) {
#loading-center-absolute { width: 90%; } }
#loading { background-color: #fff; height: 100%; width: 100%; position: fixed; z-index: 999999; margin-top: 0px; top: 0px; }
#loading-center { width: 100%; height: 100%; position: relative; }
#loading-center-absolute { position: absolute; left: 50%; top: 50%; -webkit-transform: translate(-50%, -50%); -moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); }
.w-preloader-logo { width: 180px; height: 180px; line-height: 180px; position: relative; text-align: center; margin: auto; }
.w-preloader-circle { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.w-preloader-circle svg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
-webkit-animation: w-rotate 5s linear infinite; -moz-animation: w-rotate 5s linear infinite; 
-ms-animation: w-rotate 5s linear infinite; -o-animation: w-rotate 5s linear infinite; animation: w-rotate 5s linear infinite; }
.w-preloader-circle svg circle:last-child { stroke: var(--thm-theme-primary); stroke-dashoffset: 0; stroke-dasharray: 1128, 3150;
-webkit-animation: w-loading 4s linear infinite; -moz-animation: w-loading 4s linear infinite; -ms-animation: w-loading 4s linear infinite;
-o-animation: w-loading 4s linear infinite; animation: w-loading 4s linear infinite; transform-origin: center center; }
@-webkit-keyframes w-loading {
  0% { stroke-dashoffset: 0; stroke-dasharray: 0, 3150; }
  100% { stroke-dashoffset: -1131; stroke-dasharray: 1128, 3138; }
}
@-moz-keyframes w-loading {
  0% { stroke-dashoffset: 0; stroke-dasharray: 0, 3150; }
  100% { stroke-dashoffset: -1131; stroke-dasharray: 1128, 3138; }
}
@-ms-keyframes w-loading {
  0% { stroke-dashoffset: 0; stroke-dasharray: 0, 3150; }
  100% { stroke-dashoffset: -1131; stroke-dasharray: 1128, 3138; }
}
@keyframes w-loading {
  0% { stroke-dashoffset: 0; stroke-dasharray: 0, 3150; }
  100% { stroke-dashoffset: -1131; stroke-dasharray: 1128, 3138; }
}
@-webkit-keyframes w-rotate {
  0% { -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); -moz-transform: rotate(360deg); -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg); transform: rotate(360deg); }
}
@-moz-keyframes w-rotate {
  0% { -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); -moz-transform: rotate(360deg); -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg); transform: rotate(360deg); }
}
@-ms-keyframes w-rotate {
  0% { -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); -moz-transform: rotate(360deg); -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg); transform: rotate(360deg); }
}
@keyframes w-rotate {
  0% { -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); -moz-transform: rotate(360deg); -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg); transform: rotate(360deg); }
}
.w-preloader-content { text-align: center; }
.w-preloader-title { font-size: 100px; font-weight: 500; line-height: 1; margin-bottom: 0px; }
@media (max-width: 575px) {
.w-preloader-title { font-size: 70px; } }
.w-preloader-subtitle { font-size: 16px; margin-bottom: 0; color: var(--thm-common-black); }

/**** Background *************************************/
.grey-bg { background-color: var(--thm-grey-1); }
.grey-bg-2 { background-color: var(--thm-grey-2); }
.grey-bg-5 { background-color: var(--thm-grey-5); }
.grey-bg-6 { background-color: var(--thm-grey-6); }
.grey-bg-7 { background-color: var(--thm-grey-7); }
.grey-bg-8 { background-color: var(--thm-grey-8); }
.grey-bg-9 { background-color: var(--thm-grey-9); }
.white-bg { background-color: var(--thm-common-white); }
.black-bg { background-color: var(--thm-common-black); }
.khaki-bg { background-color: var(--thm-khaki-1); }
.green-dark-bg { background-color: var(--thm-green-dark);}
.theme-bg { background-color: var(--thm-theme-primary); }
[data-bg-color=footer-bg-grey] { background-color: var(--thm-footer-grey-1); }
[data-bg-color=footer-bg-white] { background-color: var(--thm-common-white); }

/*** Carousel-uri *************************************/
.w-range-slider .inside-slider { padding-left: 7px; padding-right: 17px; }
.w-range-slider .noUi-target { background-color: #191C3C; border-radius: 12px; border: 0; box-shadow: none; }
.w-range-slider .noUi-connect { background-color: var(--thm-theme-primary); }
.w-range-slider .noUi-horizontal { height: 6px; }
.w-range-slider .noUi-handle { height: 24px; width: 24px; background-color: var(--thm-theme-primary); border-radius: 50%;
border: 4px solid var(--thm-common-white); box-shadow: 0px 4px 10px rgba(5, 9, 43, 0.3); top: -9px; }
.w-range-slider .noUi-handle:hover { cursor: pointer; }
.w-range-slider .noUi-handle::before, .w-range-slider .noUi-handle::after { display: none; }
.w-range-slider-dark .noUi-handle { border: 4px solid #2D314B; }

/* Dots Swiper Slider */
.w-swiper-dot { line-height: 1; }
.w-swiper-dot .swiper-pagination-bullet { width: 10px; height: 10px; background-color: var(--thm-grey-3); opacity: 1;
margin: 0 3px; position: relative; }
.w-swiper-dot .swiper-pagination-bullet button { font-size: 0; }
.w-swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active { background-color: var(--thm-theme-primary); }
.w-swiper-dot.w-swiper-dot-style-darkRed .swiper-pagination-bullet.swiper-pagination-bullet-active {
background-color: var(--thm-theme-secondary); }
.w-swiper-dot-border { line-height: 1; }
.w-swiper-dot-border .swiper-pagination-bullet { width: 12px; height: 12px; background-color: transparent; opacity: 1; 
margin: 0 3px; position: relative; border: 1px solid rgba(1, 15, 28, 0.4); }
.w-swiper-dot-border .swiper-pagination-bullet button { font-size: 0; }
.w-swiper-dot-border .swiper-pagination-bullet.swiper-pagination-bullet-active { background-color: var(--thm-common-black);
border-color: var(--thm-common-black); }
.w-swiper-dot-border .swiper-pagination-bullet:hover { border-color: var(--thm-common-black); }
.w-swiper-dot-border.w-swiper-dot-style-darkRed .swiper-pagination-bullet.swiper-pagination-bullet-active {
background-color: var(--thm-theme-secondary); }
.w-swiper-arrow button { width: 40px; height: 40px; line-height: 38px; font-size: 20px; text-align: center;
background-color: transparent; color: var(--thm-text-2); border: 1px solid rgba(1, 15, 28, 0.1); border-radius: 50%; }
.w-swiper-arrow button:hover { background-color: var(--thm-theme-primary); color: var(--thm-common-white); }

/* Swiper scrollbar */
.w-swiper-scrollbar { background-color: #EDEFF2; height: 2px; }
.w-swiper-scrollbar .w-swiper-scrollbar-drag { background-color: var(--thm-common-black); height: 100%; }
.w-swiper-scrollbar .w-swiper-scrollbar-drag:hover { cursor: pointer; }
.w-swiper-scrollbar:hover, .w-swiper-scrollbar:focus { -webkit-transform: scaleY(3); -moz-transform: scaleY(3); 
-ms-transform: scaleY(3); -o-transform: scaleY(3); transform: scaleY(3); }

/* Slick arrow */
.w-slick-dot .slick-dots li { display: inline-block; margin: 0 4px; }
.w-slick-dot .slick-dots li.slick-active button { background-color: var(--thm-common-white); }
.w-slick-dot .slick-dots li button { font-size: 0; width: 10px; height: 10px; border-radius: 50%; 
background-color: rgba(255, 255, 255, 0.2); }
.w-slick-dot-blue .slick-dots li.slick-active button { background-color: var(--thm-theme-primary); }
.w-slick-dot-blue .slick-dots li button { background-color: var(--thm-grey-3); }

/*** Stiluri NICE SELECT ***************************/
.nice-select { -webkit-tap-highlight-color: transparent; background-color: #fff; border-radius: 5px; border: solid 1px #e8e8e8;
box-sizing: border-box; clear: both; cursor: pointer; display: block; float: left; font-family: inherit; font-size: 14px;
font-weight: normal; height: 42px; line-height: 40px; outline: none; padding-left: 18px; padding-right: 30px; position: relative;
text-align: left !important; -webkit-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; -webkit-user-select: none;
-moz-user-select: none; -ms-user-select: none; user-select: none; white-space: nowrap; width: auto; }
.nice-select:hover { border-color: #dbdbdb; }
.nice-select:active, .nice-select.open, .nice-select:focus { border-color: #999; }
.nice-select::after { position: absolute; content: "\f107"; top: 50%; right: 0; font-family: var(--thm-ff-fontawesome);
color: var(--thm-common-black); font-weight: 500; pointer-events: none; -webkit-transition: all 0.15s ease-in-out;
transition: all 0.15s ease-in-out; margin-top: 0; transform-origin: center; -webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%); -ms-transform: translateY(-50%); -o-transform: translateY(-50%); transform: translateY(-50%); }
.nice-select.open::after { -webkit-transform: translateY(-50%) rotate(-180deg); -moz-transform: translateY(-50%) rotate(-180deg);
-ms-transform: translateY(-50%) rotate(-180deg); -o-transform: translateY(-50%) rotate(-180deg); transform: translateY(-50%) rotate(-180deg); }
.nice-select.open .list { opacity: 1; pointer-events: auto; -webkit-transform: scale(1) translateY(0); 
-ms-transform: scale(1) translateY(0); transform: scale(1) translateY(0); }
.nice-select.disabled { border-color: #ededed; color: #999; pointer-events: none; }
.nice-select.disabled::after { border-color: #cccccc; }
.nice-select.wide { width: 100%; }
.nice-select.wide .list { left: 0 !important; right: 0 !important; }
.nice-select.right { float: right; }
.nice-select.right .list { left: auto; right: 0; }
.nice-select.small { font-size: 12px; height: 36px; line-height: 34px; }
.nice-select.small::after { height: 4px; width: 4px; }
.nice-select.small .option { line-height: 34px; min-height: 34px;}
.nice-select .list { background-color: #fff; border-radius: 5px; box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
box-sizing: border-box; margin-top: 4px; opacity: 0; overflow: hidden; padding: 0; pointer-events: none; position: absolute;
top: 100%; left: 0; -webkit-transform-origin: 50% 0; -ms-transform-origin: 50% 0; transform-origin: 50% 0; 
-webkit-transform: scale(0.75) translateY(-21px); -ms-transform: scale(0.75) translateY(-21px); transform: scale(0.75) translateY(-21px);
-webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out; transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
z-index: 9; }
.nice-select .option { cursor: pointer; font-weight: 400; line-height: 40px; list-style: none; min-height: 40px; outline: none;
padding-left: 18px; padding-right: 29px; text-align: left; -webkit-transition: all 0.2s; transition: all 0.2s; }
.nice-select .option.selected { font-weight: bold; }
.nice-select .option.disabled { background-color: transparent; color: #999; cursor: default; }
.no-csspointerevents .nice-select .list { display: none; }
.no-csspointerevents .nice-select.open .list { display: block; }

/*** Paginatiile *******************************/
.w-pagination ul { display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex; }
.w-pagination ul li { display: inline-block; }
.w-pagination ul li:not(:last-child) { margin-right: 6px; }
.w-pagination ul li a, .w-pagination ul li span { display: inline-block; width: 40px; height: 40px; line-height: 38px;
text-align: center; border: 1px solid rgba(1, 15, 28, 0.1); font-size: 16px; font-weight: 500; color: var(--thm-text-body); }
.w-pagination ul li a:hover, .w-pagination ul li a.current, .w-pagination ul li span:hover, .w-pagination ul li span.current {
background: var(--thm-theme-primary); border-color: var(--thm-theme-primary); color: var(--thm-common-white); }

/******* Offcanvas ******************************/
.offcanvas__area { position: fixed; right: 0; top: 0; width: 380px; height: 100%; -webkit-transform: translateX(calc(100% + 80px));
-moz-transform: translateX(calc(100% + 80px)); -ms-transform: translateX(calc(100% + 80px)); -o-transform: translateX(calc(100% + 80px));
transform: translateX(calc(100% + 80px)); background: var(--thm-common-white) none repeat scroll 0 0;
-webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86); -moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
-ms-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86); -o-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86); z-index: 99999; overflow-y: scroll; overscroll-behavior-y: contain;
scrollbar-width: none; }
.offcanvas__area::-webkit-scrollbar { display: none; }
.offcanvas__area.offcanvas-opened { -webkit-transform: translateX(0); -moz-transform: translateX(0); -ms-transform: translateX(0);
-o-transform: translateX(0); transform: translateX(0); opacity: 1; }
@media (max-width: 380px) { .offcanvas__area { width: 100%; } }
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.offcanvas__top { margin-bottom: 30px; } }
.offcanvas__content { padding-bottom: 120px;}
.offcanvas__wrapper { position: relative; padding: 25px 20px 145px; z-index: 1; min-height: 100%; }
@media (max-width: 575px) { .offcanvas__wrapper { padding: 20px; } }
.offcanvas__close { position: absolute; top: 25px; right: 20px;}
@media (max-width: 575px) { .offcanvas__close { right: 20px; top: 20px; } }
.offcanvas__close-btn { display: inline-block; font-size: 16px; height: 30px; width: 30px;
line-height: 30px; background-color: transparent; color: var(--thm-common-black); background-color: #ECECEC;}
.offcanvas__close-btn:hover { background-color: var(--thm-theme-primary); border-color: transparent; color: var(--thm-common-white); }
.offcanvas__close-btn svg { -webkit-transform: translateY(-1px); -moz-transform: translateY(-1px); -ms-transform: translateY(-1px);
-o-transform: translateY(-1px); transform: translateY(-1px); }
.offcanvas__inner h4 { font-family: var(--thm-ff-space); font-size: 24px; color: var(--thm-common-white); 
line-height: 1.3; margin-bottom: 15px; }
.offcanvas__inner p { font-family: var(--thm-ff-inter); font-size: 16px; line-height: 22px;
color: var(--thm-common-white); margin-bottom: 30px;}
.offcanvas__inner > img { margin-bottom: 30px; }
.offcanvas__menu ul li { list-style: none; margin-bottom: 10px; }
.offcanvas__menu ul li:last-child { margin-bottom: 0; }
.offcanvas__menu ul li a { font-weight: 700; font-size: 20px; color: var(--thm-common-black); }
.offcanvas__menu ul li:hover > a { color: var(--thm-theme-primary); }
.offcanvas__text p { font-family: var(--thm-ff-inter); font-weight: 400; font-size: 14px;  line-height: 1.7; 
letter-spacing: 0.01em; color: var(--thm-common-black-4); margin-bottom: 25px; }
.offcanvas__contact-call { font-family: var(--thm-ff-space); font-weight: 700; font-size: 20px; 
color: var(--thm-common-black); margin-bottom: 5px; }
.offcanvas__contact-call a:hover { color: var(--thm-theme-primary); }
.offcanvas__contact-mail { font-family: var(--thm-ff-space); font-weight: 400;
font-size: 16px; color: var(--thm-text-1); }
.offcanvas__contact-mail a:hover { color: var(--thm-theme-primary); }
.offcanvas__social { margin-bottom: 22px; padding-bottom: 40px; border-bottom: 1px solid var(--thm-border-primary); }
.offcanvas__social a { display: inline-block; width: 40px; height: 40px; line-height: 38px; text-align: center;
background: transparent; color: var(--thm-common-black); margin-right: 5px; border: 2px solid var(--thm-border-primary); }
.offcanvas__social a:hover { background: var(--thm-theme-primary); color: var(--thm-common-white);
border-color: var(--thm-theme-primary); }
.offcanvas__info-item { margin-bottom: 38px; }
.offcanvas__info-item-title { font-family: var(--thm-ff-space); font-weight: 700; font-size: 18px; 
color: var(--thm-common-white); margin-bottom: 12px; }
.offcanvas__info-item p { font-size: 16px; color: var(--thm-text-16); margin-bottom: 0; line-height: 22px; }
.offcanvas__info-item p a:hover { color: var(--thm-theme-primary); }
.offcanvas__categoryssss ul { padding-top: 15px;}
.offcanvas__categoryssss ul li { list-style: none; position: relative; width: 100%; padding-left: 20px; padding-right: 20px; }
.offcanvas__categoryssss ul li a { display: block; font-size: 16px; color: var(--thm-common-black); position: relative; }
.offcanvas__categoryssss ul li a > i { display: inline-block; width: 11%; margin-right: 13px; -webkit-transform: translateY(4px);
-moz-transform: translateY(4px); -ms-transform: translateY(4px); -o-transform: translateY(4px); transform: translateY(4px);
font-size: 21px; line-height: 1; }
.offcanvas__categoryssss ul li a .menu-text { font-size: 16px; line-height: 11px; border-bottom: 1px solid #EAEBED;
width: 82%; display: inline-block; padding: 19px 0 17px; }
.offcanvas__categoryssss ul li:hover > a { color: var(--thm-theme-primary); }
.offcanvas__categoryssss ul li:hover > a::after { color: var(--thm-theme-primary); }
.offcanvas__categoryssss ul li:hover .mega-menu { visibility: visible; opacity: 1; top: 0; }
.offcanvas__categoryssss ul li.has-dropdown > a .dropdown-toggle-btn { position: absolute; right: 0; top: 50%; font-size: 16px;
color: #7F8387; }
.offcanvas__categoryssss ul li.has-dropdown > a .dropdown-toggle-btn.dropdown-opened {
-webkit-transform: translateY(-50%) rotate(90deg); -moz-transform: translateY(-50%) rotate(90deg);
-ms-transform: translateY(-50%) rotate(90deg); -o-transform: translateY(-50%) rotate(90deg);
transform: translateY(-50%) rotate(90deg); }
.offcanvas__categoryssss ul li.has-dropdown > a.expanded { color: var(--thm-theme-primary); }
.offcanvas__categoryssss ul li.has-dropdown > a.expanded .dropdown-toggle-btn.dropdown-opened, .offcanvas__categoryssss ul li.has-dropdown > a.expanded .dropdown-toggle-btn.dropdown-opened i {
color: var(--thm-theme-primary); }
.offcanvas__categoryssss ul li.has-dropdown:hover > a::after { color: var(--thm-theme-green); }
.offcanvas__categoryssss ul li:last-child a span { border-bottom: 0; }
.offcanvas__categoryssss ul li .mega-menu { position: absolute; top: 40px; left: 100%; background-color: var(--thm-common-white);
z-index: 1; min-width: 670px; display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex;
box-shadow: 14px 20px 40px rgba(1, 15, 28, 0.14); border-radius: 0px 8px 8px 0px; visibility: hidden; opacity: 0; }
.offcanvas__categoryssss ul li .mega-menu *.menu-text { display: none; }
.offcanvas__categoryssss ul li .mega-menu .mega-menu-left { width: 60%; }
.offcanvas__categoryssss ul li .mega-menu .mega-menu-right { width: 40%; border: 4px solid var(--thm-common-white); 
border-radius: 0 6px 6px 0; padding-left: 34px; padding-right: 33px; padding-top: 30px; }
.offcanvas__categoryssss ul li .mega-menu .mega-menu-right-title { font-weight: 500; font-size: 20px; margin-bottom: 7px; }
.offcanvas__categoryssss ul li .mega-menu .mega-menu-img { height: 120px; display: -webkit-box; display: -moz-box;
display: -ms-flexbox; display: -webkit-flex; display: flex; justify-content: center; align-items: end; margin-bottom: 40px; }
.offcanvas__categoryssss ul li .mega-menu .mega-menu-list { display: -webkit-box; display: -moz-box; display: -ms-flexbox;
display: -webkit-flex; display: flex; border-bottom: 1px solid #EAEBED; }
.offcanvas__categoryssss ul li .mega-menu .mega-menu-list ul { padding-left: 34px; padding-bottom: 30px; }
.offcanvas__categoryssss ul li .mega-menu .mega-menu-list ul:not(:last-child) { border-right: 1px solid #EAEBED; }
.offcanvas__categoryssss ul li .mega-menu .mega-menu-list ul li { padding: 0; }
.offcanvas__categoryssss ul li .mega-menu .mega-menu-list ul li:not(:last-child) { margin-bottom: 4px; }
.offcanvas__categoryssss ul li .mega-menu .mega-menu-list ul li a { font-weight: 400; font-size: 15px; color: #55585B; }
.offcanvas__categoryssss ul li .mega-menu .mega-menu-list ul li a.mega-menu-title { font-weight: 500; font-size: 20px;
color: var(--thm-common-black); margin-bottom: 10px; }
.offcanvas__categoryssss ul li .mega-menu .mega-menu-list ul li a:hover { color: var(--thm-theme-green); }
.offcanvas__categoryssss ul li .mega-menu .mega-menu-list ul li ul { padding: 0; }
.offcanvas__categoryssss ul li .mega-menu .mega-menu-list ul li ul:not(:last-child) { border: 0; }
.offcanvas__categoryssss ul li .mega-menu .mega-menu-brand { display: flex; justify-content: center; }
.offcanvas__categoryssss ul li .mega-menu .mega-menu-brand a { margin: 0 27px; display: inline-block; border: 0;
padding: 26px 0 20px; }
.offcanvas__categoryssss ul li .mega-menu .mega-menu-brand a img { opacity: 0.5; }
.offcanvas__categoryssss ul li .mega-menu .mega-menu-brand a .menu-text { display: none; }
.offcanvas__categoryssss ul li .mega-menu .mega-menu-brand a:hover img { opacity: 1; }
.offcanvas__categoryssss ul li .mega-menu .menu-shop-thumb a { border: 0; }
.offcanvas__categoryssss ul li .mega-menu .menu-shop-thumb img { width: 70px; height: auto; object-fit: cover; margin-right: 17px; }
.offcanvas__categoryssss ul li .mega-menu .menu-shop-item { padding-top: 14px; }
.offcanvas__categoryssss ul li .mega-menu .menu-shop-item:not(:last-child) { padding-bottom: 15px; border-bottom: 1px solid #EAEBED; }
.offcanvas__categoryssss ul li .mega-menu .menu-shop-meta span { font-size: 14px; line-height: 1; display: inline-block; margin-bottom: 1px; }
.offcanvas__categoryssss ul li .mega-menu .menu-shop-meta span a { color: #55585B; font-size: 14px; }
.offcanvas__categoryssss ul li .mega-menu .menu-shop-meta span a:hover { color: var(--thm-theme-green); }
.offcanvas__categoryssss ul li .mega-menu .menu-shop-title { font-weight: 400; font-size: 16px; line-height: 0.7; }
.offcanvas__categoryssss ul li .mega-menu .menu-shop-title a:hover { color: var(--thm-theme-green); }
.offcanvas__categoryssss ul li .mega-menu .menu-shop-price { font-weight: 500; font-size: 15px; line-height: 1; 
letter-spacing: -0.02em; color: var(--thm-common-black); }
.offcanvas__categoryssss ul li .mega-menu .menu-shop-price.new-price { color: var(--thm-common-black); }
.offcanvas__categoryssss ul li .mega-menu .menu-shop-price.old-price { font-weight: 400;font-size: 13px;
text-decoration-line: line-through; color: var(--thm-text-1); }
.offcanvas__categoryssss nav { display: none; }
.offcanvas__lang, .offcanvas__currency { position: relative; padding-right: 0; z-index: 9; }
.offcanvas__lang .nice-select, .offcanvas__currency .nice-select { padding: 0; padding-right: 18px; padding-left: 28px; 
font-size: 14px; border: 0; color: var(--thm-text-2); background-color: transparent; }
.offcanvas__lang .nice-select .current, .offcanvas__currency .nice-select .current { color: var(--thm-text-2);
font-size: 14px; font-weight: 500; }
.offcanvas__lang .nice-select .list, .offcanvas__currency .nice-select .list { border-radius: 0; margin-top: 0; left: auto;
right: 0; }
.offcanvas__lang .nice-select .list .option, .offcanvas__currency .nice-select .list .option { color: var(--thm-text-2); }
.offcanvas__lang .nice-select .list .option:hover, .offcanvas__lang .nice-select .list .option.selected.focus, .offcanvas__currency .nice-select .list .option:hover, .offcanvas__currency .nice-select .list .option.selected.focus {
color: var(--thm-theme-1); }
.offcanvas__lang-selected-lang, .offcanvas__lang-selected-currency, .offcanvas__currency-selected-lang, .offcanvas__currency-selected-currency {
color: var(--thm-text-2); font-size: 14px; font-weight: 500; background-color: transparent; position: relative;
padding-right: 20px; }
.offcanvas__lang-selected-lang:hover, .offcanvas__lang-selected-currency:hover, .offcanvas__currency-selected-lang:hover, .offcanvas__currency-selected-currency:hover {
cursor: pointer;
}
.offcanvas__lang-selected-lang::after, .offcanvas__lang-selected-currency::after, .offcanvas__currency-selected-lang::after, .offcanvas__currency-selected-currency::after {
position: absolute; content: "\f107"; right: 0; top: 50%; -webkit-transform: translateY(-50%); -moz-transform: translateY(-50%);
-ms-transform: translateY(-50%); -o-transform: translateY(-50%); transform: translateY(-50%); color: var(--thm-text-2); 
font-size: 14px; font-family: var(--thm-ff-fontawesome); }
.offcanvas__lang-wrapper, .offcanvas__currency-wrapper { position: relative; }
.offcanvas__lang-list, .offcanvas__currency-list { position: absolute; bottom: 150%; right: 0; background-color: var(--thm-grey-1);
z-index: 11; padding: 15px 28px; border-radius: 4px; visibility: hidden; opacity: 0; }
.offcanvas__lang-list.w-lang-list.w-lang-list-open, .offcanvas__currency-list.w-lang-list.w-lang-list-open {
visibility: visible; opacity: 1; bottom: 112%; }
.offcanvas__lang-list.w-currency-list.w-currency-list-open, .offcanvas__currency-list.w-currency-list.w-currency-list-open {
visibility: visible; opacity: 1; bottom: 112%; }
.offcanvas__lang-list li, .offcanvas__currency-list li { list-style: none; color: var(--thm-common-black); text-align: left; }
.offcanvas__lang-list li:hover, .offcanvas__currency-list li:hover { color: var(--thm-theme-primary); cursor: pointer; }
.offcanvas__bottom { position: absolute; bottom: 24px; left: 40px; right: 40px; z-index: 1; 
border-top: 1px solid var(--thm-border-primary); padding-top: 15px; }
.offcanvas__contact { padding-left: 20px; padding-right: 20px; }
.offcanvas__contact-title { font-size: 20px; font-weight: 500; margin-bottom: 0; }
.offcanvas__contact-title a:hover { color: var(--thm-theme-primary); }
.offcanvas__btn { padding-left: 20px; padding-right: 20px; }
.offcanvas__btn .w-btn-2 { padding: 11px 30px; font-size: 14px; }
.offcanvas__btn .w-btn-2 { border-radius: 0; }
.offcanvas__style-darkRed .w-offcanvas-category-toggle { background-color: var(--thm-theme-secondary); }
.offcanvas__style-darkRed .offcanvas__close-btn:hover { background-color: var(--thm-theme-secondary); }
.offcanvas__style-darkRed .offcanvas__category ul li:hover > a { color: var(--thm-theme-secondary);}
.offcanvas__style-darkRed .mean-container .mean-nav ul li.has-dropdown:hover > a,
.offcanvas__style-darkRed .mean-container .mean-nav ul li.has-dropdown:hover .mean-expand {
color: var(--thm-theme-secondary); }
.offcanvas__style-darkRed .mean-container .mean-nav ul li.dropdown-opened > a,
.offcanvas__style-darkRed .mean-container .mean-nav ul li a:hover,
.offcanvas__style-darkRed .mean-container .mean-nav ul li.dropdown-opened > a.mean-expand.mean-clicked,
.offcanvas__style-darkRed .mean-container .mean-nav ul li a.mean-expand:hover i,
.offcanvas__style-darkRed .mean-container .mean-nav ul li a.mean-expand.mean-clicked:hover i,
.offcanvas__style-darkRed .mean-container .mean-nav ul li.dropdown-opened > a.mean-expand.mean-clicked i,
.offcanvas__style-darkRed .offcanvas__lang-list li:hover,
.offcanvas__style-darkRed .offcanvas__currency-list li:hover { color: var(--thm-theme-secondary);}
.offcanvas__style-darkRed .offcanvas__btn .w-btn-2:hover {
background-color: var(--thm-theme-secondary); border-color: var(--thm-theme-secondary); color: var(--thm-common-white); }
.offcanvas__style-darkRed .w-main-menu-mobile ul li:hover > a { color: var(--thm-theme-secondary); }
.offcanvas__style-darkRed .w-main-menu-mobile ul li:hover > a .dropdown-toggle-btn i { color: var(--thm-theme-secondary); }
.offcanvas__style-darkRed .w-main-menu-mobile ul li.has-dropdown > a.expanded { color: var(--thm-theme-secondary); }
.offcanvas__style-darkRed .w-main-menu-mobile ul li.has-dropdown > a.expanded .dropdown-toggle-btn.dropdown-opened {
background-color: var(--thm-theme-secondary); border-color: var(--thm-theme-secondary); color: var(--thm-common-white); }
.offcanvas__style-darkRed .w-main-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn:hover {
background-color: var(--thm-theme-secondary); border-color: var(--thm-theme-secondary); color: var(--thm-common-white); }
.offcanvas__style-darkRed .w-menu-showcase-btn { border-radius: 0; background-color: var(--thm-theme-secondary); }
.offcanvas__style-darkRed .home-menu-title a:hover { color: var(--thm-theme-secondary); }
.offcanvas__style-darkRed .w-category-mobile-menu ul li.has-dropdown > a .dropdown-toggle-btn:hover {
background-color: var(--thm-theme-secondary); border-color: var(--thm-theme-secondary); color: var(--thm-common-white); }
.offcanvas__style-darkRed .w-category-mobile-menu ul li:hover > a .dropdown-toggle-btn i { color: var(--thm-theme-secondary); }
.offcanvas__style-darkRed .w-category-mobile-menu ul li.has-dropdown > a.expanded { color: var(--thm-theme-secondary); }
.offcanvas__style-darkRed .w-category-mobile-menu ul li.has-dropdown > a.expanded .dropdown-toggle-btn.dropdown-opened {
background-color: var(--thm-theme-secondary); border-color: var(--thm-theme-secondary); color: var(--thm-common-white); }
.offcanvas__radius .w-btn-2 { border-radius: 6px;}
.offcanvas__style-brown .w-offcanvas-category-toggle { background-color: var(--thm-theme-brown); }
.offcanvas__style-brown .offcanvas__category ul li:hover > a { color: var(--thm-theme-brown); }
.offcanvas__style-brown .offcanvas__close-btn:hover { background-color: var(--thm-theme-brown); }
.offcanvas__style-brown .mean-container .mean-nav ul li.has-dropdown:hover > a,
.offcanvas__style-brown .mean-container .mean-nav ul li.has-dropdown:hover .mean-expand { color: var(--thm-theme-brown); }
.offcanvas__style-brown .mean-container .mean-nav ul li.dropdown-opened > a,
.offcanvas__style-brown .mean-container .mean-nav ul li a:hover,
.offcanvas__style-brown .mean-container .mean-nav ul li.dropdown-opened > a.mean-expand.mean-clicked,
.offcanvas__style-brown .mean-container .mean-nav ul li a.mean-expand:hover i,
.offcanvas__style-brown .mean-container .mean-nav ul li a.mean-expand.mean-clicked:hover i,
.offcanvas__style-brown .mean-container .mean-nav ul li.dropdown-opened > a.mean-expand.mean-clicked i,
.offcanvas__style-brown .offcanvas__lang-list li:hover,
.offcanvas__style-brown .offcanvas__currency-list li:hover { color: var(--thm-theme-brown);}
.offcanvas__style-brown .offcanvas__btn .w-btn-2:hover { background-color: var(--thm-theme-brown);
border-color: var(--thm-theme-brown); color: var(--thm-common-white); }
.offcanvas__style-brown .w-main-menu-mobile ul li:hover > a { color: var(--thm-theme-brown); }
.offcanvas__style-brown .w-main-menu-mobile ul li:hover > a .dropdown-toggle-btn i { color: var(--thm-theme-brown);}
.offcanvas__style-brown .w-main-menu-mobile ul li.has-dropdown > a.expanded { color: var(--thm-theme-brown);}
.offcanvas__style-brown .w-main-menu-mobile ul li.has-dropdown > a.expanded .dropdown-toggle-btn.dropdown-opened {
background-color: var(--thm-theme-brown); border-color: var(--thm-theme-brown); color: var(--thm-common-white); }
.offcanvas__style-brown .w-main-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn:hover {
background-color: var(--thm-theme-brown); border-color: var(--thm-theme-brown); color: var(--thm-common-white); }
.offcanvas__style-brown .w-menu-showcase-btn { border-radius: 0; background-color: var(--thm-theme-brown); }
.offcanvas__style-brown .home-menu-title a:hover { color: var(--thm-theme-brown); }
.offcanvas__style-brown .w-category-mobile-menu ul li.has-dropdown > a .dropdown-toggle-btn:hover {
background-color: var(--thm-theme-brown); border-color: var(--thm-theme-brown); color: var(--thm-common-white); }
.offcanvas__style-brown .w-category-mobile-menu ul li:hover > a .dropdown-toggle-btn i { color: var(--thm-theme-brown); }
.offcanvas__style-brown .w-category-mobile-menu ul li.has-dropdown > a.expanded { color: var(--thm-theme-brown); }
.offcanvas__style-brown .w-category-mobile-menu ul li.has-dropdown > a.expanded .dropdown-toggle-btn.dropdown-opened {
background-color: var(--thm-theme-brown); border-color: var(--thm-theme-brown); color: var(--thm-common-white); }
.offcanvas__style-green .w-category-menu-content { display: block; }
.offcanvas__style-green .w-offcanvas-category-toggle { background-color: var(--thm-theme-green); }
.offcanvas__style-green .offcanvas__category ul li:hover > a { color: var(--thm-theme-green); }
.offcanvas__style-green .offcanvas__close-btn:hover { background-color: var(--thm-theme-green); }
.offcanvas__style-green .mean-container .mean-nav ul li.has-dropdown:hover > a,
.offcanvas__style-green .mean-container .mean-nav ul li.has-dropdown:hover .mean-expand { color: var(--thm-theme-green); }
.offcanvas__style-green .mean-container .mean-nav ul li.dropdown-opened > a,
.offcanvas__style-green .mean-container .mean-nav ul li a:hover,
.offcanvas__style-green .mean-container .mean-nav ul li.dropdown-opened > a.mean-expand.mean-clicked,
.offcanvas__style-green .mean-container .mean-nav ul li a.mean-expand:hover i,
.offcanvas__style-green .mean-container .mean-nav ul li a.mean-expand.mean-clicked:hover i,
.offcanvas__style-green .mean-container .mean-nav ul li.dropdown-opened > a.mean-expand.mean-clicked i,
.offcanvas__style-green .offcanvas__lang-list li:hover, .offcanvas__style-green .offcanvas__currency-list li:hover {
color: var(--thm-theme-green); }
.offcanvas__style-green .offcanvas__btn .w-btn-2:hover {
background-color: var(--thm-theme-green); border-color: var(--thm-theme-green); color: var(--thm-common-white); }
.offcanvas__style-green .w-main-menu-mobile ul li:hover > a { color: var(--thm-theme-green); }
.offcanvas__style-green .w-main-menu-mobile ul li:hover > a .dropdown-toggle-btn i { color: var(--thm-theme-green); }
.offcanvas__style-green .w-main-menu-mobile ul li.has-dropdown > a.expanded { color: var(--thm-theme-green); }
.offcanvas__style-green .w-main-menu-mobile ul li.has-dropdown > a.expanded .dropdown-toggle-btn.dropdown-opened {
background-color: var(--thm-theme-green); border-color: var(--thm-theme-green); color: var(--thm-common-white); }
.offcanvas__style-green .w-main-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn:hover {
background-color: var(--thm-theme-green); border-color: var(--thm-theme-green); color: var(--thm-common-white); }
.offcanvas__style-green .w-menu-showcase-btn { border-radius: 0; background-color: var(--thm-theme-green); }
.offcanvas__style-green .home-menu-title a:hover { color: var(--thm-theme-green); }
.offcanvas__style-green .home-menu-title a { border-bottom: 0 !important; }
.offcanvas__style-green .w-category-mobile-menu ul li.has-dropdown > a .dropdown-toggle-btn:hover {
background-color: var(--thm-theme-green); border-color: var(--thm-theme-green); color: var(--thm-common-white); }
.offcanvas__style-green .w-category-mobile-menu ul li:hover > a .dropdown-toggle-btn i { color: var(--thm-theme-green); }
.offcanvas__style-green .w-category-mobile-menu ul li.has-dropdown > a.expanded { color: var(--thm-theme-green); }
.offcanvas__style-green .w-category-mobile-menu ul li.has-dropdown > a.expanded .dropdown-toggle-btn.dropdown-opened {
background-color: var(--thm-theme-green); border-color: var(--thm-theme-green); color: var(--thm-common-white); }
.w-offcanvas-category-toggle { font-size: 16px; color: var(--thm-common-white); display: block; position: relative;
width: 100%; text-align: left; background-color: var(--thm-theme-primary); padding: 10px 20px; }
.w-offcanvas-category-toggle::after { position: absolute; content: "\f107"; right: 20px; top: 50%; font-size: 16px; }
.w-offcanvas-category-toggle svg, .w-offcanvas-category-toggle i { margin-right: 14px; font-size: 16px !important; }

/*** Breadcrumb Antete pagini *************************/
.breadcrumb__area { background-color: var(--thm-grey-2); }
.breadcrumb__padding { padding-left: 80px; padding-right: 80px; }
@media only screen and (min-width: 992px) and (max-width: 1199px) {
.breadcrumb__padding { padding-left: 40px; padding-right: 40px; } }
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.breadcrumb__padding { padding-left: 0; padding-right: 0; } }
.breadcrumb__title { font-weight: 600; font-size: 40px; line-height: 1; margin-bottom: 6px; color: var(--thm-theme-primary); }
.breadcrumb__title-pre { display: inline-block; height: 24px; line-height: 26px; font-size: 14px; color: #ffffff;
font-weight: 500; background: var(--thm-theme-primary); -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px;
padding: 0 7px; margin-bottom: 12px; }
.breadcrumb__list span { font-weight: 500; font-size: 14px; position: relative; }
.breadcrumb__list span:not(:last-child) { padding-right: 12px; margin-right: 5px; }
.breadcrumb__list span:not(:last-child)::after { position: absolute; content: ""; right: 0; top: 50%; width: 4px; height: 4px;
background-color: #A8ACB0; border-radius: 50%; }
.breadcrumb__list span a:hover { color: var(--thm-theme-primary); }
.breadcrumb__overlay { position: relative; }
.breadcrumb__overlay::after { position: absolute; content: ""; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(1, 15, 28, 0.5); }
.breadcrumb__style-2 .breadcrumb__list span:last-child { color: var(--thm-common-black); }
.breadcrumb__style-2 .breadcrumb__list span.breadcrumb-icon { padding-right: 0; margin-right: 0; }
.breadcrumb__style-2 .breadcrumb__list span.breadcrumb-icon svg { -webkit-transform: translateY(-3px); -moz-transform: translateY(-3px); 
-ms-transform: translateY(-3px); -o-transform: translateY(-3px); transform: translateY(-3px); }
.breadcrumb__style-2 .breadcrumb__list.has-icon span:nth-child(1)::after { display: none; }
.breadcrumb__style-3 .breadcrumb__title { color: var(--thm-common-white); }
.breadcrumb__style-3 .breadcrumb__list span { color: var(--thm-common-white); }
.breadcrumb__style-3 .breadcrumb__list span:last-child { color: rgba(255, 255, 255, 0.8); }
.breadcrumb__style-3 .breadcrumb__list span:not(:last-child)::after { background-color: var(--thm-common-white); }
.breadcrumb__style-3 .breadcrumb__list span.breadcrumb-icon { padding-right: 0; margin-right: 0; }
.breadcrumb__style-3 .breadcrumb__list span.breadcrumb-icon svg { -webkit-transform: translateY(-3px); -moz-transform: translateY(-3px);
-ms-transform: translateY(-3px); -o-transform: translateY(-3px); transform: translateY(-3px); }
.breadcrumb__style-3 .breadcrumb__list span a:hover { color: var(--thm-common-white); }
.breadcrumb__style-3 .breadcrumb__list.has-icon span:nth-child(1)::after { display: none; }

/*** Stiluri Accordion *********************************************/
.w-accordion .accordion-item { background-color: transparent; border: 0; border-bottom: 1px solid rgba(var(--thm-common-black), 1); }
.w-accordion .accordion-item:first-of-type .accordion-button { border-top-left-radius: 0; border-top-right-radius: 0; }
.w-accordion .accordion-item:last-of-type { border-bottom-right-radius: 0; border-bottom-left-radius: 0; }
.w-accordion .accordion-item:last-of-type .accordion-button.collapsed { border-bottom-right-radius: 0; border-bottom-left-radius: 0; }
.w-accordion .accordion-button { padding: 30px 0; padding-right: 15px; font-size: 24px; font-weight: 500; color: var(--thm-common-black);
background-color: transparent; }
.w-accordion .accordion-button::after { position: absolute; content: "\f106"; font-family: var(--thm-ff-fontawesome); 
background-image: none; top: 28%; right: 0; -webkit-transform: rotate(180deg); -moz-transform: rotate(180deg); -ms-transform: rotate(180deg);
-o-transform: rotate(180deg); transform: rotate(180deg); color: var(--thm-theme-primary); width: auto; height: auto; font-weight: 500;
background: none; }
.w-accordion .accordion-button.has-plus-icon::after { display: none;}
.w-accordion .accordion-button .w-accordion-plus { position: absolute; top: 50%; right: 0; -webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%); -ms-transform: translateY(-50%); -o-transform: translateY(-50%); transform: translateY(-50%);
display: inline-block; width: 14px; height: 14px; }
.w-accordion .accordion-button .w-accordion-plus::after { position: absolute; content: ""; width: 100%; height: 2px; left: 0;
top: 50%; -webkit-transform: translateY(-50%); -moz-transform: translateY(-50%); -ms-transform: translateY(-50%);
-o-transform: translateY(-50%); transform: translateY(-50%); background-color: #525258; border-radius: 2px; }
.w-accordion .accordion-button .w-accordion-plus::before { position: absolute; content: ""; width: 2px; height: 100%;
left: 50%; top: 0; background-color: #525258; -webkit-transform: translateX(-50%); -moz-transform: translateX(-50%);
-ms-transform: translateX(-50%); -o-transform: translateX(-50%); transform: translateX(-50%); border-radius: 2px; }
.w-accordion .accordion-button.collapsed::after { -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg);
-ms-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); color: var(--thm-common-black); }
.w-accordion .accordion-button:not(.collapsed) { color: var(--thm-theme-primary); background-color: transparent; box-shadow: none; }
.w-accordion .accordion-button:not(.collapsed) .w-accordion-plus::before { -webkit-transform: translateX(-50%) rotate(90deg);
-moz-transform: translateX(-50%) rotate(90deg); -ms-transform: translateX(-50%) rotate(90deg); -o-transform: translateX(-50%) rotate(90deg);
transform: translateX(-50%) rotate(90deg); background-color: var(--thm-theme-1); }
.w-accordion .accordion-button:not(.collapsed) .w-accordion-plus::after { background-color: var(--thm-theme-1); }
.w-accordion .accordion-button:focus { box-shadow: none; border: 0; }
.w-accordion .accordion-button:hover { color: var(--thm-theme-primary); }
.w-accordion .accordion-button:hover::after { color: var(--thm-theme-primary); }
.w-accordion .accordion-body { padding: 0 0 25px; }
.w-accordion .accordion-body p { font-size: 16px; color: var(--thm-text-1); }

/*** Stiluri TABS-uri *******************************/
.w-tab .nav-tabs { padding: 0; margin: 0; border: 0; }
.w-tab .nav-tabs .nav-link { padding: 0; margin: 0; border: 0; }
.w-product-tab-2 .nav-tabs .nav-link { font-size: 20px; color: #A0A2A4; position: relative; }
@media (max-width: 575px) {
.w-product-tab-2 .nav-tabs .nav-link { font-size: 15px; } }
.w-product-tab-2 .nav-tabs .nav-link:not(:first-child) { margin-left: 28px; }
.w-product-tab-2 .nav-tabs .nav-link:not(:first-child)::after { position: absolute; left: -17px; top: 50%; content: "";
width: 6px; height: 6px; border-radius: 50%; background-color: #CED2D6; }
.w-product-tab-2 .nav-tabs .nav-link.active { color: var(--thm-theme-secondary); }
.w-product-tab-2 .nav-tabs .nav-link.active .w-product-tab-tooltip { opacity: 1; visibility: visible; }
.w-product-tab-2 .nav-tabs .nav-link .w-product-tab-tooltip { position: absolute; top: -24px; right: 0; 
background-color: var(--thm-theme-secondary); color: var(--thm-common-white); font-size: 12px; line-height: 1; 
display: inline-block; padding: 4px 9px; border-radius: 4px; visibility: hidden; opacity: 0; font-weight: 700; }
.w-product-tab-2 .nav-tabs .nav-link .w-product-tab-tooltip::after { position: absolute; content: ""; bottom: 0; bottom: -5px;
left: 7px; width: 13px; height: 6px; background-color: var(--thm-theme-secondary); clip-path: polygon(100% 0, 0 0, 28% 100%); }
.w-product-tab-3 .nav-tabs .nav-link { font-size: 16px; padding: 0 0; }
@media (max-width: 575px) { .w-product-tab-3 .nav-tabs .nav-link { font-size: 15px; } }
.w-product-tab-3 .nav-tabs .nav-link:not(:first-child) { margin-left: 23px; }
.w-product-tab-3 .nav-tabs .nav-link:not(:first-child)::after { width: 4px; height: 4px; left: -14px; }
.w-product-tab-3 .nav-tabs .nav-link.active { color: var(--thm-common-black); }
.w-product-tab-3 .nav-tabs .nav-link.active .w-product-tab-tooltip { opacity: 1; visibility: visible; }
.w-product-tab-3 .nav-tabs .nav-link .w-product-tab-tooltip { background-color: var(--thm-theme-primary); }
.w-product-tab-3 .nav-tabs .nav-link .w-product-tab-tooltip::after { background-color: var(--thm-theme-primary); }
.w-product-tab-5 .nav-tabs .nav-link { padding: 0 5px; }
@media (max-width: 575px) { .w-product-tab-5 .nav-tabs .nav-link { font-size: 15px; } }
.w-product-tab-5 .nav-tabs .nav-link:not(:last-child)::after { left: -15px; }
.w-product-tab-5 .nav-tabs .nav-link:not(:first-child) { margin-left: 22px; }
.w-product-tab-5 .nav-tabs .nav-link.active { color: var(--thm-common-black); }
.w-product-tab-5 .nav-tabs .nav-link.active .w-product-tab-tooltip { opacity: 1; visibility: visible; }
.w-product-tab-5 .nav-tabs .nav-link .w-product-tab-tooltip { background-color: var(--thm-theme-green); }
.w-product-tab-5 .nav-tabs .nav-link .w-product-tab-tooltip::after { background-color: var(--thm-theme-green); }
.w-tab-line { position: absolute; content: ""; left: 0; bottom: -1px; width: 38%; height: 2px; background-color: var(--thm-common-black); }

/*** Stiluri MODAL-uri / Tiluri Sectiuni *******************************/
.w-section-title { font-size: 36px; color: var(--thm-heading-secondary); position: relative; z-index: 1; }
@media only screen and (min-width: 1200px) and (max-width: 1399px) { .w-section-title { font-size: 45px; } }
@media only screen and (min-width: 992px) and (max-width: 1199px) { .w-section-title { font-size: 35px; } }
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-section-title { font-size: 30px; } }
.w-section-title svg { position: absolute; left: 0; bottom: -12px; z-index: -1; }
.w-section-title svg path { stroke: var(--thm-pink-3); }
.w-section-title-sm { font-size: 24px; }
.w-section-title-sm svg { left: -3px; bottom: -3px; }
.w-section-title-pre { font-size: 14px; font-weight: var(--thm-fw-bold); color: var(--thm-theme-primary); display: inline-block;
text-transform: uppercase; }
.w-section-title-2 { font-weight: 500; font-size: 44px; }
@media (max-width: 575px) { .w-section-title-2 { font-size: 35px; } }
.w-section-title-pre-2 { font-weight: 400; font-size: 18px; color: var(--thm-theme-secondary); position: relative; z-index: 1;
display: inline-block; }
.w-section-title-pre-2 svg { position: absolute; bottom: -8px; left: 26px; z-index: -1; }
.w-section-title-3 { font-weight: 500; font-size: 44px; }
@media (max-width: 575px) { .w-section-title-3 { font-size: 35px; } }
.w-section-title-pre-3 { font-weight: 400; font-size: 18px; line-height: 14px; color: var(--thm-theme-brown); display: inline-block; }
.w-section-title-wrapper-4 p { font-size: 18px; }
.w-section-title-4 { font-weight: 500; font-size: 44px; line-height: 1.12; margin-bottom: 5px; }
@media (max-width: 575px) { .w-section-title-4 { font-size: 35px; } }
.w-section-title-4.fz-50 { font-size: 50px; }
@media only screen and (min-width: 992px) and (max-width: 1199px) { .w-section-title-4.fz-50 { font-size: 33px; } }
@media (max-width: 575px) { .w-section-title-4.fz-50 { font-size: 41px; } }
.w-section-title-pre-4 { font-weight: 400; font-size: 18px; line-height: 14px; color: var(--thm-theme-brown);
display: inline-block; margin-bottom: 11px; }
.w-section-title-5 { font-weight: 500; font-size: 44px; }
@media only screen and (min-width: 576px) and (max-width: 767px) { .w-section-title-5 { font-size: 40px; } }
@media (max-width: 575px) { .w-section-title-5 { font-size: 35px; } }
.w-section-title-pre-5 { font-weight: 400; font-size: 18px; color: var(--thm-theme-green); position: relative; z-index: 1;
display: inline-block; margin-bottom: 12px; }
.w-section-title-pre-5 svg { position: absolute; bottom: -8px; left: 26px; z-index: -1; }
.w-section-title-pre-5.has-mb-0 { margin-bottom: 0; }
.w-section-title-6 { font-size: 44px; font-weight: 500; position: relative; z-index: 1; }
@media only screen and (min-width: 1200px) and (max-width: 1399px) { .w-section-title-6 { font-size: 45px;} }
@media only screen and (min-width: 992px) and (max-width: 1199px) { .w-section-title-6 { font-size: 35px; } }
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-section-title-6 { font-size: 30px; } }
.w-section-title-pre-6 { font-size: 18px; color: var(--thm-theme-primary); display: inline-block; text-transform: capitalize; }
.w-section-title-7 { font-size: 50px; font-weight: 500; line-height: 1.07; position: relative; z-index: 1; }
@media only screen and (min-width: 1200px) and (max-width: 1399px) { .w-section-title-7 { font-size: 45px; } }
@media only screen and (min-width: 992px) and (max-width: 1199px) { .w-section-title-7 { font-size: 35px; } }
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-section-title-7 {  font-size: 30px; } }
.w-section-title-pre-7 { font-size: 20px; color: var(--thm-theme-primary); display: inline-block; text-transform: capitalize; 
font-weight: 400; margin-bottom: 10px; }

/*** Stiluri CAUTARE ****************************************/
.w-search-area { position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 9999; background-color: var(--thm-common-white);
padding: 40px 15px; visibility: visible; opacity: 0; transform: translateY(-120%); }
.w-search-area.opened { transform: translateY(0%); visibility: visible; opacity: 1; }
.w-search-input { position: relative; }
.w-search-input button { position: absolute; top: 54%; right: 20px; -webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%); -ms-transform: translateY(-50%); -o-transform: translateY(-50%); 
transform: translateY(-50%); font-size: 24px; }
.w-search-input button:hover { color: var(--thm-theme-primary); }
.w-search-category span { color: var(--thm-common-black); }
.w-search-category a:hover { color: var(--thm-theme-primary); }
.w-search-close { display: none; }
.w-search-close-btn { border-radius: 50%; background: #ECECEC; border: 9px solid transparent; color: var(--thm-common-black);
width: 36px; height: 36px; display: inline-flex; justify-content: center; align-items: center; position: relative; cursor: pointer; }
.w-search-close-btn::after, .w-search-close-btn::before { content: ""; position: absolute; height: 1px; width: 90%; top: 46%;
left: 1px; transform-origin: 50% 50%; background-color: var(--thm-common-black); opacity: 1; -moz-transition: -moz-transform ease 0.25s;
-webkit-transition: -webkit-transform ease 0.25s; -o-transition: -o-transform ease 0.25s; -ms-transition: -ms-transform ease 0.25s;
transition: transform ease 0.25s; }
.w-search-close-btn::before { transform: rotate(45deg); }
.w-search-close-btn::after { transform: rotate(-45deg); }
.w-search-close-btn:hover::before { transform: rotate(-45deg); }
.w-search-close-btn:hover::after { transform: rotate(45deg); }
.w-search-style-blur { background-color: rgba(255, 255, 255, 0.1); backdrop-filter: blur(14px); }
.w-search-style-blur .w-search-input input { background-color: transparent; border-color: rgba(255, 255, 255, 0.1); 
color: var(--thm-common-white); }
.w-search-style-blur .w-search-input input::-webkit-input-placeholder {
color: rgba(255, 255, 255, 0.3); }
.w-search-style-blur .w-search-input input::-moz-placeholder { color: rgba(255, 255, 255, 0.3); }
.w-search-style-blur .w-search-input input:-moz-placeholder {  color: rgba(255, 255, 255, 0.3); }
.w-search-style-blur .w-search-input input:-ms-input-placeholder {  color: rgba(255, 255, 255, 0.3); }
.w-search-style-blur .w-search-input input::placeholder {  color: rgba(255, 255, 255, 0.3); }
.w-search-style-blur .w-search-input input:focus { border-color: rgba(255, 255, 255, 0.5); }
.w-search-style-blur .w-search-input button { color: var(--thm-common-white); opacity: 0.6; }
.w-search-style-blur .w-search-input button:hover { opacity: 1; }
.w-search-style-blur .w-search-category span { color: rgba(255, 255, 255, 0.7); }
.w-search-style-blur .w-search-category a { color: rgba(255, 255, 255, 0.7); }
.w-search-style-blur .w-search-category a:hover { color: var(--thm-common-white); }
.w-search-style-blur .w-search-close-btn { background-color: transparent; color: rgba(255, 255, 255, 0.7); }
.w-search-style-blur .w-search-close-btn::after, .w-search-style-blur .w-search-close-btn::before {
  background-color: rgba(255, 255, 255, 0.7); }
.w-search-style-blur .w-search-close-btn:hover::after, .w-search-style-blur .w-search-close-btn:hover::before {
  background-color: white; }
.w-search-style-secondary .w-search-input button:hover { color: var(--thm-theme-secondary); }
.w-search-style-secondary .w-search-category a:hover { color: var(--thm-theme-secondary); }
.w-search-style-brown .w-search-input button:hover { color: var(--thm-theme-brown); }
.w-search-style-brown .w-search-category a:hover { color: var(--thm-theme-brown); }
.w-search-style-green .w-search-input input { border-radius: 30px; }
.w-search-style-green .w-search-input button:hover { color: var(--thm-theme-green); }
.w-search-style-green .w-search-category a:hover { color: var(--thm-theme-green); }

/*** Stiluri HOTSPOTS ***************************************/
.w-hotspot { display: inline-block; width: 44px; height: 44px; line-height: 44px; text-align: center; font-size: 16px;
color: var(--thm-common-black); border-radius: 50%; background-color: var(--thm-common-white); position: absolute; z-index: 1; }
.w-hotspot:hover { cursor: pointer; }

/*** Stiluri RANGE SLIDER si restul ... ***********************************/
.ui-button-icon-only, .ui-controlgroup-vertical .ui-controlgroup-item { box-sizing: border-box; }
.ui-checkboxradio-disabled, .ui-state-disabled { pointer-events: none; }
.ui-datepicker .ui-icon, .ui-icon { text-indent: -99999px;  background-repeat: no-repeat; }
.ui-helper-reset, .ui-menu { outline: 0; list-style: none; }
.ui-helper-hidden, .ui-resizable-autohide .ui-resizable-handle, .ui-resizable-disabled .ui-resizable-handle { display: none; }
.ui-helper-hidden-accessible { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; 
position: absolute; width: 1px; }
.ui-helper-reset { margin: 0; padding: 0; border: 0; line-height: 1.3; text-decoration: none; font-size: 100%; }
.ui-helper-clearfix:after, .ui-helper-clearfix:before { content: ""; display: table; border-collapse: collapse; }
.ui-helper-clearfix:after { clear: both;}
.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter: Alpha(Opacity=0); }
.ui-front { z-index: 100; }
.ui-state-disabled { cursor: default !important; }
.ui-icon { display: inline-block; vertical-align: middle; margin-top: -0.25em; position: relative; overflow: hidden; }
.ui-widget-icon-block { left: 50%; margin-left: -8px; display: block; }
.ui-widget-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; }
.ui-accordion .ui-accordion-header { display: block; cursor: pointer; position: relative; margin: 2px 0 0; padding: 0.5em 0.5em 0.5em 0.7em;
  font-size: 100%; }
.ui-autocomplete, .ui-menu .ui-menu { position: absolute;}
.ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; overflow: auto; }
.ui-autocomplete { top: 0; left: 0; cursor: default;}
.ui-menu { padding: 0; margin: 0; display: block;}
.ui-button, .ui-controlgroup { display: inline-block; vertical-align: middle; }
.ui-button, .ui-menu-icons, .ui-resizable { position: relative; }
.ui-menu .ui-menu-item { margin: 0; cursor: pointer;
list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"); }
.ui-menu .ui-menu-item-wrapper { position: relative; padding: 3px 1em 3px 0.4em; }
.ui-menu .ui-menu-divider {  margin: 5px 0;  height: 0;  font-size: 0;  line-height: 0; border-width: 1px 0 0; }
.ui-menu .ui-state-active, .ui-menu .ui-state-focus { margin: -1px; }
.ui-menu-icons .ui-menu-item-wrapper { padding-left: 2em; }
.ui-button, .ui-controlgroup .ui-controlgroup-label { padding: 0.4em 1em; }
.ui-menu .ui-icon { position: absolute; top: 0; bottom: 0; left: 0.2em; margin: auto 0; }
.ui-menu .ui-menu-icon { left: auto; right: 0; }
.ui-button { line-height: normal; margin-right: 0.1em; cursor: pointer; text-align: center; -webkit-user-select: none;
-moz-user-select: none; -ms-user-select: none; user-select: none; overflow: visible; }
.ui-button, .ui-button:active, .ui-button:hover, .ui-button:link, .ui-button:visited { text-decoration: none;}
.ui-button-icon-only { width: 2em; text-indent: -9999px; white-space: nowrap; }
input.ui-button.ui-button-icon-only { text-indent: 0;}
.ui-button-icon-only .ui-icon { position: absolute; top: 50%; left: 50%; margin-top: -8px; margin-left: -8px;}
.ui-button.ui-icon-notext .ui-icon { padding: 0; width: 2.1em; height: 2.1em; text-indent: -9999px; white-space: nowrap;}
input.ui-button.ui-icon-notext .ui-icon { width: auto; height: auto; text-indent: 0; white-space: normal; padding: 0.4em 1em; }
button.ui-button::-moz-focus-inner, input.ui-button::-moz-focus-inner {  border: 0; padding: 0;}
.ui-controlgroup > .ui-controlgroup-item { float: left; margin-left: 0; margin-right: 0; }
.ui-controlgroup > .ui-controlgroup-item.ui-visual-focus, .ui-controlgroup > .ui-controlgroup-item:focus { z-index: 9999; }
.ui-controlgroup-vertical > .ui-controlgroup-item { display: block; float: none; width: 100%; margin-top: 0; margin-bottom: 0;
  text-align: left; }
.ui-controlgroup .ui-controlgroup-label span { font-size: 80%;}
.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item { border-left: none; }
.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item { border-top: none; }
.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content { border-right: none; }
.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content { border-bottom: none; }
.ui-controlgroup-vertical .ui-spinner-input { width: 75%; width: calc(100% - 2.4em); }
.ui-controlgroup-vertical .ui-spinner .ui-spinner-up { border-top-style: solid;}
.ui-checkboxradio-label .ui-icon-background { box-shadow: inset 1px 1px 1px #ccc; border-radius: 0.12em; border: none;}
.ui-checkboxradio-radio-label .ui-icon-background { width: 16px; height: 16px; border-radius: 1em; overflow: visible; border: none; }
.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon, .ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
background-image: none; width: 8px; height: 8px; border-width: 4px; border-style: solid; }
.ui-datepicker { width: 17em; padding: 0.2em 0.2em 0; display: none; }
.ui-datepicker .ui-datepicker-header { position: relative; padding: 0.2em 0;}
.ui-datepicker .ui-datepicker-next, .ui-datepicker .ui-datepicker-prev { position: absolute; top: 2px; width: 1.8em; height: 1.8em; }
.ui-datepicker .ui-datepicker-next-hover, .ui-datepicker .ui-datepicker-prev-hover { top: 1px; }
.ui-datepicker .ui-datepicker-prev { left: 2px;}
.ui-datepicker .ui-datepicker-next { right: 2px; }
.ui-datepicker .ui-datepicker-prev-hover { left: 1px; }
.ui-datepicker .ui-datepicker-next-hover { right: 1px;}
.ui-datepicker .ui-datepicker-next span, .ui-datepicker .ui-datepicker-prev span { display: block; position: absolute;
left: 50%; margin-left: -8px; top: 50%; margin-top: -8px; }
.ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center;}
.ui-datepicker .ui-datepicker-title select { font-size: 1em; margin: 1px 0;}
.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year { width: 45%;}
.ui-datepicker table { width: 100%; font-size: 0.9em; border-collapse: collapse; margin: 0 0 0.4em; }
.ui-datepicker th { padding: 0.7em 0.3em; text-align: center; font-weight: 700; border: 0; }
.ui-datepicker td { border: 0; padding: 1px;}
.ui-datepicker td a, .ui-datepicker td span { display: block; padding: 0.2em; text-align: right; text-decoration: none;}
.ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: 0.7em 0 0; padding: 0 0.2em; border-left: 0;
  border-right: 0; border-bottom: 0;}
.ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: 0.5em 0.2em 0.4em; cursor: pointer;
padding: 0.2em 0.6em 0.3em; width: auto; overflow: visible; }
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current, .ui-datepicker-multi .ui-datepicker-group, .ui-datepicker-rtl .ui-datepicker-buttonpane button {
float: left;}
.ui-datepicker.ui-datepicker-multi { width: auto;}
.ui-datepicker-multi .ui-datepicker-group table { width: 95%; margin: 0 auto 0.4em; }
.ui-datepicker-multi-2 .ui-datepicker-group { width: 50%;}
.ui-datepicker-multi-3 .ui-datepicker-group { width: 33.3%;}
.ui-datepicker-multi-4 .ui-datepicker-group { width: 25%;}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header, .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0; }
.ui-datepicker-multi .ui-datepicker-buttonpane { clear: left; }
.ui-datepicker-row-break { clear: both; width: 100%; font-size: 0; }
.ui-datepicker-rtl { direction: rtl;}
.ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; }
.ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; }
.ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; }
.ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; }
.ui-datepicker-rtl .ui-datepicker-buttonpane { clear: right; }
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current, .ui-datepicker-rtl .ui-datepicker-group, .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right; }
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header, .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0; border-left-width: 1px; }
.ui-datepicker .ui-icon { display: block; overflow: hidden; left: 0.5em; top: 0.3em; }
.ui-dialog { position: absolute; top: 0; left: 0; padding: 0.2em; outline: 0; }
.ui-dialog .ui-dialog-titlebar { padding: 0.4em 1em; position: relative;}
.ui-dialog .ui-dialog-title { float: left; margin: 0.1em 0; white-space: nowrap; width: 90%;  overflow: hidden; text-overflow: ellipsis; }
.ui-dialog .ui-dialog-titlebar-close { position: absolute; right: 0.3em; top: 50%; width: 20px;
  margin: -10px 0 0; padding: 1px; height: 20px; }
.ui-dialog .ui-dialog-content { position: relative; border: 0; padding: 0.5em 1em; background: 0 0; overflow: auto;}
.ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0; background-image: none; margin-top: 0.5em;
padding: 0.3em 1em 0.5em 0.4em; }
.ui-dialog .ui-dialog-buttonpane button { margin: 0.5em 0.4em 0.5em 0; cursor: pointer; }
.ui-dialog .ui-resizable-n { height: 2px; top: 0; }
.ui-dialog .ui-resizable-e { width: 2px; right: 0; }
.ui-dialog .ui-resizable-s { height: 2px; bottom: 0; }
.ui-dialog .ui-resizable-w { width: 2px; left: 0;}
.ui-dialog .ui-resizable-ne, .ui-dialog .ui-resizable-nw, .ui-dialog .ui-resizable-se, .ui-dialog .ui-resizable-sw {
  width: 7px;  height: 7px; }
.ui-dialog .ui-resizable-se { right: 0; bottom: 0; }
.ui-dialog .ui-resizable-sw { left: 0; bottom: 0; }
.ui-dialog .ui-resizable-ne { right: 0; top: 0; }
.ui-dialog .ui-resizable-nw { left: 0; top: 0; }
.ui-draggable .ui-dialog-titlebar { cursor: move; }
.ui-draggable-handle, .ui-selectable, .ui-sortable-handle { -ms-touch-action: none; touch-action: none; }
.ui-resizable-handle { position: absolute; font-size: 0.1px; display: block; -ms-touch-action: none; touch-action: none; }
.ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; }
.ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; }
.ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; }
.ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; }
.ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; }
.ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; }
.ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; }
.ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px; }
.ui-progressbar { height: 2em; text-align: left; overflow: hidden; }
.ui-progressbar .ui-progressbar-value { margin: -1px; height: 100%; }
.ui-progressbar .ui-progressbar-overlay {
  background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
  height: 100%; opacity: 0.25; }
.ui-progressbar-indeterminate .ui-progressbar-value { background-image: none; }
.ui-selectable-helper { position: absolute; z-index: 100; border: 1px dotted #000; }
.ui-selectmenu-menu { padding: 0; margin: 0; position: absolute; top: 0; left: 0; display: none; }
.ui-selectmenu-menu .ui-menu { overflow: auto; overflow-x: hidden; padding-bottom: 1px; }
.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup { font-size: 1em; font-weight: 700; line-height: 1.5;
  padding: 2px 0.4em; margin: 0.5em 0 0; height: auto; border: 0; }
.ui-selectmenu-open { display: block;}
.ui-selectmenu-text { display: block; margin-right: 20px; overflow: hidden; text-overflow: ellipsis; }
.ui-selectmenu-button.ui-button { text-align: left; white-space: nowrap; width: 14em; }
.ui-selectmenu-icon.ui-icon { float: right; margin-top: 0; }
.ui-slider { position: relative; text-align: left; }
.ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default;
  -ms-touch-action: none; touch-action: none; }
.ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: 0.7em; display: block; border: 0; background-position: 0 0; }
.ui-slider.ui-state-disabled .ui-slider-handle, .ui-slider.ui-state-disabled .ui-slider-range { filter: inherit;}
.ui-slider-horizontal { height: 0.8em;}
.ui-slider-horizontal .ui-slider-handle { top: -0.3em;  margin-left: -0.6em; }
.ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; }
.ui-slider-horizontal .ui-slider-range-min { left: 0; }
.ui-slider-horizontal .ui-slider-range-max { right: 0; }
.ui-slider-vertical { width: 0.8em; height: 100px;}
.ui-slider-vertical .ui-slider-handle { left: -0.3em; margin-left: 0; margin-bottom: -0.6em; }
.ui-slider-vertical .ui-slider-range { left: 0; width: 100%; }
.ui-slider-vertical .ui-slider-range-min, .ui-spinner-down { bottom: 0; }
.ui-slider-vertical .ui-slider-range-max, .ui-spinner-up { top: 0; }
.ui-spinner { position: relative; display: inline-block; overflow: hidden; padding: 0; vertical-align: middle; }
.ui-spinner-input { border: none; background: 0 0; color: inherit; padding: 0.222em 0; margin: 0.2em 2em 0.2em 0.4em;
vertical-align: middle; }
.ui-spinner-button { width: 1.6em; height: 50%; font-size: 0.5em; padding: 0; margin: 0; text-align: center;
  position: absolute; cursor: default; display: block; overflow: hidden; right: 0; }
.ui-spinner a.ui-spinner-button { border-top-style: none; border-bottom-style: none; border-right-style: none;}
.ui-tabs { position: relative; padding: 0.2em; }
.ui-tabs .ui-tabs-nav { margin: 0; padding: 0.2em 0.2em 0; }
.ui-tabs .ui-tabs-nav li {list-style: none; float: left; position: relative; top: 0; margin: 1px 0.2em 0 0; 
  border-bottom-width: 0; padding: 0; white-space: nowrap; }
.ui-tabs .ui-tabs-nav .ui-tabs-anchor { float: left; padding: 0.5em 1em; text-decoration: none; }
.ui-tabs .ui-tabs-nav li.ui-tabs-active { margin-bottom: -1px; padding-bottom: 1px;}
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor, .ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor, .ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
  cursor: text;}
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor { cursor: pointer;}
.ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: 0 0; }
.ui-tooltip { padding: 8px; position: absolute; z-index: 9999; max-width: 300px; }
body .ui-tooltip {  border-width: 2px; }
.ui-widget, .ui-widget button, .ui-widget input, .ui-widget select, .ui-widget textarea {
  font-family: Arial, Helvetica, sans-serif; font-size: 1em; }
.ui-widget .ui-widget { font-size: 1em;}
.ui-widget.ui-widget-content { border: 1px solid #c5c5c5;}
.ui-widget-content { border: 1px solid #ddd; background: #fff; color: #333;}
.ui-widget-content a, .ui-widget-header a { color: #333; }
.ui-widget-header { border: 1px solid #ddd; background: #e9e9e9; color: #333; font-weight: 700; }
.ui-button, .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, html .ui-button.ui-state-disabled:active, html .ui-button.ui-state-disabled:hover {
  border: 1px solid #c5c5c5; background: #f6f6f6; font-weight: 400; color: #454545; }
.ui-button, .ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited, a.ui-button, a:link.ui-button, a:visited.ui-button {
  color: #454545; text-decoration: none; }
.ui-button:focus, .ui-button:hover, .ui-state-focus, .ui-state-hover, .ui-widget-content .ui-state-focus, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-focus, .ui-widget-header .ui-state-hover {
  border: 1px solid #ccc; background: #ededed; font-weight: 400; color: #2b2b2b; }
.ui-state-focus a, .ui-state-focus a:hover, .ui-state-focus a:link, .ui-state-focus a:visited, .ui-state-hover a, .ui-state-hover a:hover, .ui-state-hover a:link, .ui-state-hover a:visited, a.ui-button:focus, a.ui-button:hover {
  color: #2b2b2b; text-decoration: none;}
.ui-visual-focus { box-shadow: 0 0 3px 1px #5e9ed6;}
.ui-button.ui-state-active:hover, .ui-button:active, .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active {
  border: 1px solid #003eff; background: #007fff; font-weight: 400; color: #fff; }
.ui-icon-background, .ui-state-active .ui-icon-background { border: #003eff; background-color: #fff; }
.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #fff; text-decoration: none;}
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
  border: 1px solid #dad55e; background: #fffa90; color: #777620;}
.ui-state-checked { border: 1px solid #dad55e; background: #fffa90; }
.ui-state-highlight a, .ui-widget-content .ui-state-highlight a, .ui-widget-header .ui-state-highlight a {
color: #777620;}

.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {
  border: 1px solid #f1a899; background: #fddfdf; color: #5f3f3f;}
.ui-state-error a, .ui-state-error-text, .ui-widget-content .ui-state-error a, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error a, .ui-widget-header .ui-state-error-text {
  color: #5f3f3f;}
.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary {
  font-weight: 700;}
.ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary {
  opacity: 0.7; filter: Alpha(Opacity=70); font-weight: 400;}
.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled {
  opacity: 0.35; filter: Alpha(Opacity=35); background-image: none;}
.ui-state-disabled .ui-icon { filter: Alpha(Opacity=35);}

/*** UI ICOANE ************/
.ui-icon { width: 16px; height: 16px;}
.ui-icon-blank { background-position: 16px 16px; }
.ui-icon-caret-1-n { background-position: 0 0; }
.ui-icon-caret-1-ne { background-position: -16px 0; }
.ui-icon-caret-1-e { background-position: -32px 0; }
.ui-icon-caret-1-se { background-position: -48px 0; }
.ui-icon-caret-1-s { background-position: -65px 0; }
.ui-icon-caret-1-sw { background-position: -80px 0; }
.ui-icon-caret-1-w { background-position: -96px 0; }
.ui-icon-caret-1-nw { background-position: -112px 0; }
.ui-icon-caret-2-n-s { background-position: -128px 0; }
.ui-icon-caret-2-e-w { background-position: -144px 0; }
.ui-icon-triangle-1-n { background-position: 0 -16px; }
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
.ui-icon-triangle-1-e { background-position: -32px -16px; }
.ui-icon-triangle-1-se { background-position: -48px -16px; }
.ui-icon-triangle-1-s { background-position: -65px -16px;}
.ui-icon-triangle-1-sw { background-position: -80px -16px;}
.ui-icon-triangle-1-w { background-position: -96px -16px; }
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
.ui-icon-arrow-1-n { background-position: 0 -32px; }
.ui-icon-arrow-1-ne { background-position: -16px -32px;}
.ui-icon-arrow-1-e { background-position: -32px -32px; }
.ui-icon-arrow-1-se { background-position: -48px -32px;}
.ui-icon-arrow-1-s { background-position: -65px -32px; }
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
.ui-icon-arrow-1-w { background-position: -96px -32px; }
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
.ui-icon-arrowthick-1-n { background-position: 1px -48px; }
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
.ui-icon-arrowthick-1-nw { background-position: -112px -48px;}
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px;}
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
.ui-icon-arrow-4 { background-position: 0 -80px; }
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
.ui-icon-extlink { background-position: -32px -80px; }
.ui-icon-newwin { background-position: -48px -80px; }
.ui-icon-refresh { background-position: -64px -80px; }
.ui-icon-shuffle { background-position: -80px -80px; }
.ui-icon-transfer-e-w { background-position: -96px -80px; }
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
.ui-icon-folder-collapsed { background-position: 0 -96px; }
.ui-icon-folder-open { background-position: -16px -96px; }
.ui-icon-document { background-position: -32px -96px; }
.ui-icon-document-b { background-position: -48px -96px; }
.ui-icon-note { background-position: -64px -96px; }
.ui-icon-mail-closed { background-position: -80px -96px; }
.ui-icon-mail-open { background-position: -96px -96px; }
.ui-icon-suitcase { background-position: -112px -96px; }
.ui-icon-comment { background-position: -128px -96px; }
.ui-icon-person { background-position: -144px -96px; }
.ui-icon-print { background-position: -160px -96px; }
.ui-icon-trash { background-position: -176px -96px; }
.ui-icon-locked { background-position: -192px -96px; }
.ui-icon-unlocked { background-position: -208px -96px; }
.ui-icon-bookmark { background-position: -224px -96px; }
.ui-icon-tag { background-position: -240px -96px; }
.ui-icon-home { background-position: 0 -112px; }
.ui-icon-flag { background-position: -16px -112px; }
.ui-icon-calendar { background-position: -32px -112px; }
.ui-icon-cart { background-position: -48px -112px; }
.ui-icon-pencil { background-position: -64px -112px; }
.ui-icon-clock { background-position: -80px -112px; }
.ui-icon-disk { background-position: -96px -112px; }
.ui-icon-calculator { background-position: -112px -112px; }
.ui-icon-zoomin { background-position: -128px -112px; }
.ui-icon-zoomout { background-position: -144px -112px; }
.ui-icon-search { background-position: -160px -112px; }
.ui-icon-wrench { background-position: -176px -112px; }
.ui-icon-gear { background-position: -192px -112px;}
.ui-icon-heart { background-position: -208px -112px; }
.ui-icon-star { background-position: -224px -112px; }
.ui-icon-link { background-position: -240px -112px; }
.ui-icon-cancel { background-position: 0 -128px; }
.ui-icon-plus { background-position: -16px -128px; }
.ui-icon-plusthick { background-position: -32px -128px; }
.ui-icon-minus { background-position: -48px -128px; }
.ui-icon-minusthick { background-position: -64px -128px; }
.ui-icon-close { background-position: -80px -128px; }
.ui-icon-closethick { background-position: -96px -128px; }
.ui-icon-key { background-position: -112px -128px; }
.ui-icon-lightbulb { background-position: -128px -128px; }
.ui-icon-scissors { background-position: -144px -128px; }
.ui-icon-clipboard { background-position: -160px -128px; }
.ui-icon-copy { background-position: -176px -128px; }
.ui-icon-contact { background-position: -192px -128px; }
.ui-icon-image { background-position: -208px -128px; }
.ui-icon-video { background-position: -224px -128px; }
.ui-icon-script { background-position: -240px -128px; }
.ui-icon-alert { background-position: 0 -144px; }
.ui-icon-info { background-position: -16px -144px; }
.ui-icon-notice { background-position: -32px -144px; }
.ui-icon-help { background-position: -48px -144px; }
.ui-icon-check { background-position: -64px -144px; }
.ui-icon-bullet { background-position: -80px -144px; }
.ui-icon-radio-on { background-position: -96px -144px; }
.ui-icon-radio-off { background-position: -112px -144px; }
.ui-icon-pin-w { background-position: -128px -144px; }
.ui-icon-pin-s { background-position: -144px -144px; }
.ui-icon-play { background-position: 0 -160px; }
.ui-icon-pause { background-position: -16px -160px; }
.ui-icon-seek-next { background-position: -32px -160px; }
.ui-icon-seek-prev { background-position: -48px -160px; }
.ui-icon-seek-end { background-position: -64px -160px; }
.ui-icon-seek-first, .ui-icon-seek-start { background-position: -80px -160px; }
.ui-icon-stop { background-position: -96px -160px; }
.ui-icon-eject { background-position: -112px -160px; }
.ui-icon-volume-off { background-position: -128px -160px; }
.ui-icon-volume-on { background-position: -144px -160px; }
.ui-icon-power { background-position: 0 -176px; }
.ui-icon-signal-diag { background-position: -16px -176px; }
.ui-icon-signal { background-position: -32px -176px; }
.ui-icon-battery-0 { background-position: -48px -176px; }
.ui-icon-battery-1 { background-position: -64px -176px; }
.ui-icon-battery-2 { background-position: -80px -176px; }
.ui-icon-battery-3 { background-position: -96px -176px; }
.ui-icon-circle-plus { background-position: 0 -192px; }
.ui-icon-circle-minus { background-position: -16px -192px; }
.ui-icon-circle-close { background-position: -32px -192px; }
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
.ui-icon-circle-zoomin { background-position: -176px -192px; }
.ui-icon-circle-zoomout { background-position: -192px -192px; }
.ui-icon-circle-check { background-position: -208px -192px; }
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
.ui-icon-circlesmall-close { background-position: -32px -208px; }
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
.ui-icon-squaresmall-close { background-position: -80px -208px; }
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }
.ui-corner-all, .ui-corner-left, .ui-corner-tl, .ui-corner-top { border-top-left-radius: 3px; }
.ui-corner-all, .ui-corner-right, .ui-corner-top, .ui-corner-tr { border-top-right-radius: 3px;}
.ui-corner-all, .ui-corner-bl, .ui-corner-bottom, .ui-corner-left { border-bottom-left-radius: 3px; }
.ui-corner-all, .ui-corner-bottom, .ui-corner-br, .ui-corner-right { border-bottom-right-radius: 3px; }
.ui-widget-overlay { background: #aaa; opacity: 0.3; filter: Alpha(Opacity=30); }
.ui-widget-shadow { -webkit-box-shadow: 0 0 5px #666; box-shadow: 0 0 5px #666; }

/* STILIZARE HEADER */
.w-header-sticky.header-sticky { position: fixed !important; left: 0; margin: auto; top: 0; width: 100%; z-index: 99;
-webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown; animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: 0px 2px 6px rgba(1, 15, 28, 0.16); background: var(--thm-common-white); }
.w-header-sticky-area { position: fixed; top: -100%; left: 0; right: 0; width: 100%; box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
z-index: 99; -webkit-box-shadow: 0px 4px 10px rgba(3, 4, 28, 0.1); box-shadow: 0px 4px 10px rgba(3, 4, 28, 0.1); 
background: var(--thm-common-white); visibility: hidden; opacity: 0; }
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-header-sticky-area { padding-top: 15px; padding-bottom: 15px; } }
.w-header-sticky-area .main-menu.menu-style-1 > nav > ul > li > a { padding: 20px 0; }
.w-header-sticky-area.header-sticky-2 { top: 0; visibility: visible; opacity: 1; -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
animation: 500ms ease-in-out 0s normal none 1 running fadeInDown; }
.w-header-transparent { position: absolute; top: 0; left: 0; right: 0; width: 100%; z-index: 9; }
.w-header-welcome span { margin-right: 10px; color: var(--thm-yellow-1); }
.w-header-welcome p { font-weight: 500; font-size: 13px; color: var(--thm-common-white); opacity: 0.8; margin-bottom: 0; }
.w-header-top-menu-item { position: relative; padding: 3px 14px 4px 18px; border-right: 1px solid rgba(255, 255, 255, 0.2); }
.w-header-top-menu-item > span { position: relative; display: inline-block; font-weight: 500; font-size: 13px; 
color: var(--thm-common-white); padding-right: 20px; }
.w-header-top-menu-item > span::after { position: absolute; content: "\f107"; font-family: var(--thm-ff-fontawesome); 
margin-left: 7px; }
.w-header-top-menu-item > span:hover { cursor: pointer; }
.w-header-top-menu-item ul { position: absolute; top: 125%; right: 0; z-index: 1; background-color: var(--thm-common-white);
padding: 10px 15px; box-shadow: 0px 1px 3px rgba(3, 4, 28, 0.12); visibility: hidden; opacity: 0; min-width: max-content;
-webkit-transition: all 0.2s 0s ease-out; -moz-transition: all 0.2s 0s ease-out; -ms-transition: all 0.2s 0s ease-out;
-o-transition: all 0.2s 0s ease-out; transition: all 0.2s 0s ease-out; }
.w-header-top-menu-item ul.w-lang-list-open, .w-header-top-menu-item ul.w-currency-list-open, .w-header-top-menu-item ul.w-setting-list-open {
top: 100%; visibility: visible; opacity: 1; }
.w-header-top-menu-item ul li { list-style: none; }
.w-header-top-menu-item ul li a { font-size: 14px; color: var(--thm-common-black); }
.w-header-top-menu-item ul li a:hover { color: var(--thm-theme-primary); }
@media only screen and (min-width: 992px) and (max-width: 1199px) {
.w-header-search { padding-left: 0; margin-right: 30px; } }
.w-header-search-wrapper { position: relative; border: 2px solid var(--thm-theme-primary); margin-left: 10px; }
.w-header-search-box { width: 58%; }
@media only screen and (min-width: 992px) and (max-width: 1199px) { .w-header-search-box { width: 50%; } }
.w-header-search-box input { padding-left: 25px; padding-right: 25px; width: 100%; height: 46px; 
background-color: var(--thm-common-white); color: var(--thm-common-black); border: 0; }
.w-header-search-box input::-webkit-input-placeholder { color: var(--thm-text-1); }
.w-header-search-box input::-moz-placeholder { color: var(--thm-text-1); }
.w-header-search-box input:-moz-placeholder { color: var(--thm-text-1); }
.w-header-search-box input:-ms-input-placeholder { color: var(--thm-text-1); }
.w-header-search-box input::placeholder { color: var(--thm-text-1); }
.w-header-search-category { position: relative; }
.w-header-search-category::after { position: absolute; content: ""; left: 0; top: 48%; -webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%); -ms-transform: translateY(-50%); -o-transform: translateY(-50%); transform: translateY(-50%);
width: 1px; height: 20px; background-color: rgba(1, 15, 28, 0.3); }
.w-header-search-category .nice-select { border: 0; height: 46px; line-height: 46px; font-size: 14px; color: var(--thm-common-black);
padding-right: 20px; }
.w-header-search-btn { position: absolute; top: 0; right: 0; }
.w-header-search-btn button { width: 60px; height: 46px; line-height: 46px; background-color: var(--thm-theme-primary);
color: var(--thm-common-white); }
.w-header-login-icon span { display: inline-block; height: 44px; width: 44px; line-height: 40px; text-align: center;
border: 2px solid rgba(1, 15, 28, 0.1); border-radius: 50%; margin-right: 10px; transition: all 0.3s ease-in-out; }
.w-header-login-icon span:hover { border: 2px solid var(--thm-theme-primary); background: rgba(220,220,220,0.25);
transition: all 0.25s ease-in-out; }
.w-header-login-content { -webkit-transform: translateY(-3px); -moz-transform: translateY(-3px); -ms-transform: translateY(-3px);
-o-transform: translateY(-3px); transform: translateY(-3px); }
.w-header-login-content span { font-size: 12px; font-weight: 500; display: inline-block; color: var(--thm-text-1); line-height: 1; }
.w-header-login-title { font-size: 14px; font-weight: 500; margin-bottom: 0; line-height: 1; }
.w-header-orders-icon span { display: inline-block; height: 44px; width: 44px; line-height: 40px; text-align: center; 
border: 2px solid rgba(1, 15, 28, 0.1); border-radius: 50%; margin-right: 10px; transition: all 0.3s ease-in-out; }
.w-header-orders-icon span:hover { border: 2px solid var(--thm-theme-primary); background: rgba(220,220,220,0.25);
transition: all 0.25s ease-in-out; }
.w-header-orders-content { -webkit-transform: translateY(3px); -moz-transform: translateY(3px); -ms-transform: translateY(3px);
-o-transform: translateY(3px); transform: translateY(3px); }
.w-header-orders-content span { font-size: 12px !important; font-weight: 600; display: inline-block; color: var(--thm-text-1);
line-height: 1; }
.w-header-orders-title { font-size: 14px; font-weight: 500; margin-bottom: 0; line-height: 1; }
.w-header-main { padding-top: 27px; padding-bottom: 27px; }
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-header-main { padding-top: 15px; padding-bottom: 15px; }
}.w-header-bottom-border { border-top: 1px solid rgba(1, 15, 28, 0.1); }
@media only screen and (min-width: 992px) and (max-width: 1199px) { .w-header-action { margin-left: 25px; } }
.w-header-action-item:not(:first-child) { margin-left: 20px; }
.w-header-action-item:last-child { margin-right: 10px; }
.w-header-action-btn { font-size: 20px; color: var(--thm-common-black); position: relative; display: inline-block; }
.w-header-action-btn:hover { color: var(--thm-theme-primary); }
.w-header-action-badge { position: absolute; top: -6px; right: -13px; display: inline-block; width: 23px; height: 23px;
line-height: 20px; text-align: center; border-radius: 50%; background-color: var(--thm-pink-1); color: var(--thm-common-white);
font-size: 12px; font-weight: 700; border: 2px solid var(--thm-common-white); }
.w-header-contact-icon span { color: var(--thm-theme-primary); margin-right: 10px; }
.w-header-contact-content h5 { color: var(--thm-text-2); font-size: 12px; font-weight: 500; margin-bottom: 2px; line-height: 1; }
.w-header-contact-content p { font-weight: 500; font-size: 14px; color: var(--thm-common-black); margin-bottom: 0; line-height: 1; }
.w-header-contact-content p a:hover { color: var(--thm-theme-primary); }
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-header-height { height: auto !important; }  }

/** STILIZARE HEADER 2 ****/
.w-header-top-border { border-bottom: 1px solid rgba(1, 15, 28, 0.1); }
.w-header-top-black .w-header-top-menu-item { position: relative; padding: 7px 0; }
.w-header-top-black .w-header-top-menu-item:not(:last-child) { padding-right: 15px; margin-right: 17px; }
.w-header-top-black .w-header-top-menu-item:not(:last-child)::after { position: absolute; content: ""; right: 0; top: 50%;
width: 1px; height: 20px; background-color: rgba(1, 15, 28, 0.1); -webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%); -ms-transform: translateY(-50%); -o-transform: translateY(-50%); transform: translateY(-50%); }
.w-header-top-black .w-header-top-menu-item > span { padding-left: 0; font-size: 14px; color: var(--thm-common-black); }
.w-header-style-darkRed .w-header-action-badge { background-color: var(--thm-theme-secondary); }
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-header-style-darkRed .w-header-action-item:last-child { margin-right: 0; } }
.w-header-style-darkRed .w-header-action-btn:hover { color: var(--thm-theme-secondary);}
.w-header-style-darkRed .w-header-top-menu-item ul li a:hover { color: var(--thm-theme-secondary); }
.w-header-style-darkRed .w-header-sticky.header-sticky .w-header-action-item .w-header-action-btn .w-header-action-badge {
background-color: var(--thm-theme-secondary); border-color: var(--thm-common-white); color: var(--thm-common-white); }
.w-header-style-darkRed .w-header-sticky.header-sticky .w-header-action-item .w-header-action-btn:hover {
color: var(--thm-theme-secondary); }
.w-header-style-primary { box-shadow: 0px 2px 6px rgba(1, 15, 28, 0.16); position: relative; z-index: 11; }
.w-header-style-primary .w-header-action-badge { background-color: var(--thm-theme-primary); }
.w-header-style-primary .w-header-action-item button:hover { color: var(--thm-theme-primary); }
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-header-style-primary .w-header-action-item:last-child { margin-right: 0; } }
.w-header-style-primary .w-header-top-menu-item ul li a:hover { color: var(--thm-theme-primary); }
.w-header-style-primary .main-menu.menu-style-2 > nav > ul > li .w-submenu li:hover > a { color: var(--thm-theme-primary); }
.w-header-style-primary .main-menu.menu-style-2 > nav > ul > li .w-submenu li:hover > a::after { color: var(--thm-theme-primary); }
.w-header-style-primary .w-header-sticky.header-sticky .w-header-action-item .w-header-action-btn .w-header-action-badge {
background-color: var(--thm-theme-primary); border-color: var(--thm-theme-primary); color: var(--thm-common-white); }
.w-header-style-primary .w-header-sticky.header-sticky .w-header-action-item button .w-header-action-badge {
background-color: var(--thm-theme-primary); border-color: var(--thm-common-white); color: var(--thm-common-white); }
.w-header-style-primary .w-header-info-item a span { color: var(--thm-theme-primary); }
.w-header-style-primary .w-header-info-item a:hover { color: var(--thm-theme-primary); }
.w-header-style-primary .w-header-search-2 input:focus { border-color: var(--thm-theme-primary); }
.w-header-style-primary .w-header-search-2 button:hover { color: var(--thm-theme-primary); }
.w-header-style-primary .main-menu.menu-style-2 ul li:hover > a,
.w-header-style-primary .main-menu.menu-style-2 ul li:hover > a::after { color: var(--thm-theme-primary); }
.w-header-style-primary .main-menu.menu-style-2 > nav > ul > li .home-menu-title a:hover { color: var(--thm-theme-primary); }
.w-header-style-primary .main-menu.menu-style-2 .w-menu-showcase-btn-2 { border-radius: 0; 
background-color: var(--thm-theme-primary); }
.w-header-style-primary .w-header-sticky.header-sticky .w-header-action-item .w-header-action-btn:hover {
  color: var(--thm-theme-primary); }
.w-header-style-primary .main-menu.menu-style-2 > nav > ul > li .home-menu-item:hover .home-menu-title {
  color: var(--thm-theme-primary); }
.w-header-info-item { position: relative; }
.w-header-info-item:not(:last-child) { padding-right: 20px;  margin-right: 20px; }
.w-header-info-item:not(:last-child)::after { position: absolute; content: ""; right: 0; top: 50%; width: 1px; height: 20px;
background-color: rgba(1, 15, 28, 0.1); -webkit-transform: translateY(-50%); -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%); -o-transform: translateY(-50%); transform: translateY(-50%); }
.w-header-info-item a { font-size: 15px; color: rgba(1, 15, 28, 0.8); }
.w-header-info-item a span { color: var(--thm-theme-secondary); margin-right: 5px; }
.w-header-info-item a:hover { color: var(--thm-theme-secondary); }
.w-header-search-2 { width: 100%; position: relative; }
.w-header-search-2 input { background: var(--thm-grey-4); border: 1px solid rgba(1, 15, 28, 0.1); height: 46px; padding-left: 24px;
padding-right: 50px; }
.w-header-search-2 input::-webkit-input-placeholder { color: var(--thm-text-1); }
.w-header-search-2 input::-moz-placeholder {  color: var(--thm-text-1); }
.w-header-search-2 input:-moz-placeholder { color: var(--thm-text-1); }
.w-header-search-2 input:-ms-input-placeholder {  color: var(--thm-text-1); }
.w-header-search-2 input::placeholder {  color: var(--thm-text-1); }
.w-header-search-2 input:focus {  border-color: var(--thm-theme-secondary); }
.w-header-search-2 button { position: absolute; top: 50%; right: 20px; -webkit-transform: translateY(-50%); -moz-transform: translateY(-50%);
-ms-transform: translateY(-50%); -o-transform: translateY(-50%); transform: translateY(-50%); font-size: 24px; }
.w-header-search-2 button:hover { color: var(--thm-theme-secondary); }
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-header-bottom-2 { padding-top: 15px; padding-bottom: 15px; } }

/*** Stilizare HEADER 3 ***************************/
.w-header-sticky.header-sticky .main-menu.menu-style-3 ul li.has-dropdown > a::after {color: var(--thm-common-black);}
.w-header-sticky.header-sticky .main-menu.menu-style-3 ul li.has-dropdown:hover > a::after {color: var(--thm-theme-brown);}
.w-header-sticky.header-sticky .main-menu.menu-style-3 > nav > ul > li > a {color: var(--thm-common-black);}
.w-header-sticky.header-sticky .main-menu.menu-style-3.menu-style-4 ul li.has-dropdown > a::after {color: var(--thm-common-black);}
.w-header-sticky.header-sticky .main-menu.menu-style-3.menu-style-4 ul li:hover > a::after {color: var(--thm-theme-brown);}
.w-header-sticky.header-sticky .main-menu.menu-style-3 > nav > ul > li:hover > a {color: var(--thm-theme-brown);}
.w-header-sticky.header-sticky .w-header-action-item .w-header-action-btn { color: var(--thm-common-black);}
.w-header-sticky.header-sticky .w-header-action-item .w-header-action-btn .w-header-action-badge { 
background-color: var(--thm-theme-brown); border-color: var(--thm-theme-brown); color: var(--thm-common-white); }
.w-header-sticky.header-sticky .w-header-action-item .w-header-action-btn:hover { color: var(--thm-theme-brown);}
.w-header-sticky.header-sticky.has-dark-logo .logo .logo-light { display: none; }
.w-header-sticky.header-sticky.has-dark-logo .logo .logo-dark { display: block; }
.w-header-style-transparent-white .w-header-action-badge { background-color: var(--thm-common-white); color: var(--thm-common-black);
width: 22px; height: 22px; line-height: 22px; border: 0; }
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-header-style-transparent-white .w-header-action-item:last-child { margin-right: 0; } }
.w-header-style-transparent-white .w-header-action-btn { color: var(--thm-common-white); }
.w-header-style-transparent-white .w-header-action-btn:hover { color: var(--thm-common-white); }
.w-header-style-transparent-white .w-header-top-menu-item ul li a:hover { color: var(--thm-theme-secondary); }
.w-header-bottom-3 { border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
.w-header-bottom-3 { padding-left: 30px; padding-right: 30px; } }
@media only screen and (min-width: 992px) and (max-width: 1199px) { .w-header-bottom-3 { padding-left: 20px; padding-right: 20px; } }
@media only screen and (min-width: 768px) and (max-width: 991px) {.w-header-bottom-3 { padding-left: 25px; padding-right: 25px;} }
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-header-bottom-3 { padding-top: 12px; padding-bottom: 12px; } }
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-header-bottom-3 { padding-left: 0; padding-right: 0; } }
.has-dark-logo .logo .logo-dark { display: none; }
.w-menu-line { position: absolute; display: inline-block; height: 1px; background-color: var(--thm-common-white); }

/*** Stilizare HEADER 4 ***************************/
.w-header-sticky.header-sticky .w-header-side-menu { box-shadow: 0px 2px 4px rgba(1, 15, 28, 0.16); }
.w-header-5 { padding-top: 13px; padding-bottom: 13px; }
@media(max-width: 575px) { .w-header-5 { padding-left: 0; padding-right: 0; } }
.w-header-search-5 { margin-left: 22px; margin-right: 22px; }
@media only screen and (min-width: 1700px) and (max-width: 1800px), only screen and (min-width: 1600px) and (max-width: 1700px), only screen and (min-width: 1400px) and (max-width: 1599px) {
.w-header-search-5 { margin-left: 60px; margin-right: 60px; } }
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
.w-header-search-5 { margin-left: 100px; margin-right: 100px; } }
.w-header-search-input-box-5 { position: relative; }
.w-header-search-input-box-5 button { position: absolute; top: 50%; right: -1px; font-weight: 500; font-size: 16px;
color: var(--thm-common-white); background-color: var(--thm-common-black); padding: 7px 36px 11px; border-radius: 0 30px 30px 0; }
.w-header-search-input-5 input { height: 44px; border: none; border-radius: 30px; padding-left: 52px; padding-right: 130px; }
.w-header-search-input-5 input::-webkit-input-placeholder { color: #95999D; }
.w-header-search-input-5 input::-moz-placeholder { color: #95999D; }
.w-header-search-input-5 input:-moz-placeholder { color: #95999D; }
.w-header-search-input-5 input:-ms-input-placeholder { color: #95999D; }
.w-header-search-input-5 input::placeholder {  color: #95999D; }
.w-header-search-input-5 span { position: absolute; top: 50%; left: 27px; font-size: 18px; color: var(--thm-common-black); }
.w-header-action-5 button, .w-header-action-5 a { display: inline-block; position: relative; width: 38px; height: 38px;
text-align: center; line-height: 38px; border-radius: 50%; background-color: rgba(255, 255, 255, 0.14); font-size: 16px;
color: var(--thm-common-white); }
.w-header-action-item-5 { margin-right: 8px; }
.w-header-action-item-5:not(:last-child) { margin-right: 22px; }
.w-header-action-badge-5 { position: absolute; top: -4px; right: -11px; display: inline-block; font-weight: 500; font-size: 12px;
line-height: 1; letter-spacing: -0.1em; color: var(--thm-common-black); width: 26px; height: 26px; line-height: 20px; 
border-radius: 50%; border: 3px solid var(--thm-theme-green); background-color: var(--thm-common-white); }
.w-header-login-icon-5 span { font-size: 16px; color: var(--thm-common-white); background-color: rgba(255, 255, 255, 0.14);
display: inline-block; width: 38px; height: 38px; line-height: 38px; text-align: center; border-radius: 50%; margin-right: 9px; }
.w-header-login-icon-5 span svg { -webkit-transform: translate(1px, -3px); -moz-transform: translate(1px, -3px);
  -ms-transform: translate(1px, -3px); -o-transform: translate(1px, -3px); transform: translate(1px, -3px); }
.w-header-login-content-5 p { display: inline-block; font-weight: 500; font-size: 14px; line-height: 1.14; color: white; 
margin-bottom: 0; }
.w-header-login-content-5 p span { color: rgba(255, 255, 255, 0.6); }
.w-header-side-menu { position: absolute; top: 100%; left: 0; width: 280px; background-color: var(--thm-common-white);
z-index: 99; padding: 39px 0 38px; box-shadow: 0px 1px 0px rgba(1, 15, 28, 0.06); }
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-header-side-menu { display: none; } }
.w-header-side-menu ul li { list-style: none; position: relative; width: 100%; padding-left: 40px; padding-right: 40px; }
.w-header-side-menu ul li a { display: block; font-size: 16px; color: var(--thm-common-black); position: relative; }
.w-header-side-menu ul li a i { display: inline-block; width: 11%; margin-right: 13px; -webkit-transform: translateY(4px);
-moz-transform: translateY(4px); -ms-transform: translateY(4px); -o-transform: translateY(4px); transform: translateY(4px);
font-size: 21px; line-height: 1; }
.w-header-side-menu ul li a .menu-text { font-size: 16px; line-height: 11px; border-bottom: 1px solid #EAEBED; width: 82%;
display: inline-block; padding: 19px 0 17px; }
.w-header-side-menu ul li:hover > a { color: var(--thm-theme-green); }
.w-header-side-menu ul li:hover > a::after { color: var(--thm-theme-green); }
.w-header-side-menu ul li:hover .mega-menu { visibility: visible; opacity: 1; top: 0; }
.w-header-side-menu ul li:hover > .w-submenu { opacity: 1; visibility: visible; left: 100%; }
.w-header-side-menu ul li.has-dropdown > a::after { position: absolute; content: "\f105"; right: 0; top: 50%; font-size: 16px;
color: #7F8387; }
.w-header-side-menu ul li.has-dropdown:hover > a::after { color: var(--thm-theme-green); }
.w-header-side-menu ul li .w-submenu { position: absolute; left: 110%; top: 0%; visibility: hidden; opacity: 0; min-width: 300px;
background-color: var(--thm-common-white); -webkit-transition: all 0.3s 0s ease-out; -moz-transition: all 0.3s 0s ease-out;
-ms-transition: all 0.3s 0s ease-out; -o-transition: all 0.3s 0s ease-out; transition: all 0.3s 0s ease-out; padding-top: 10px;
padding-bottom: 10px; display: block; }
.w-header-side-menu ul li .w-submenu li a { font-size: 15px; padding: 6px 0 7px; }
.w-header-side-menu ul li .w-submenu li ul { display: block; }
.w-header-side-menu ul li:last-child a span { border-bottom: 0; }
.w-header-side-menu ul li .mega-menu { position: absolute; top: 40px; left: 100%; background-color: var(--thm-common-white);
z-index: 1; min-width: 670px; display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex;
box-shadow: 14px 20px 40px rgba(1, 15, 28, 0.14); border-radius: 0px 8px 8px 0px;  visibility: hidden; opacity: 0; }
.w-header-side-menu ul li .mega-menu .home-menu { padding: 20px 20px 0; }
.w-header-side-menu ul li .mega-menu .home-menu .home-menu-title a:hover { color: var(--thm-theme-green); }
.w-header-side-menu ul li .mega-menu *.menu-text { display: none; }
.w-header-side-menu ul li .mega-menu .mega-menu-left { width: 60%; }
.w-header-side-menu ul li .mega-menu .mega-menu-right { width: 40%; border: 4px solid var(--thm-common-white); 
border-radius: 0 6px 6px 0; padding-left: 34px; padding-right: 33px; padding-top: 30px; }
.w-header-side-menu ul li .mega-menu .mega-menu-right-title { font-weight: 500; font-size: 20px; margin-bottom: 7px; }
.w-header-side-menu ul li .mega-menu .mega-menu-img { height: 120px; display: -webkit-box; display: -moz-box; display: -ms-flexbox;
display: -webkit-flex; display: flex; justify-content: center; align-items: end; margin-bottom: 40px; }
.w-header-side-menu ul li .mega-menu .mega-menu-list { display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex;
display: flex; border-bottom: 1px solid #EAEBED; }
.w-header-side-menu ul li .mega-menu .mega-menu-list ul { padding-left: 34px; padding-bottom: 30px; }
.w-header-side-menu ul li .mega-menu .mega-menu-list ul:not(:last-child) { border-right: 1px solid #EAEBED; }
.w-header-side-menu ul li .mega-menu .mega-menu-list ul li { padding: 0; }
.w-header-side-menu ul li .mega-menu .mega-menu-list ul li:not(:last-child) { margin-bottom: 4px; }
.w-header-side-menu ul li .mega-menu .mega-menu-list ul li a { font-weight: 400; font-size: 15px; color: #55585B; }
.w-header-side-menu ul li .mega-menu .mega-menu-list ul li a.mega-menu-title { font-weight: 500; font-size: 20px;
color: var(--thm-common-black); margin-bottom: 10px; }
.w-header-side-menu ul li .mega-menu .mega-menu-list ul li a:hover { color: var(--thm-theme-green); }
.w-header-side-menu ul li .mega-menu .mega-menu-list ul li ul { padding: 0; }
.w-header-side-menu ul li .mega-menu .mega-menu-list ul li ul:not(:last-child) { border: 0; }
.w-header-side-menu ul li .mega-menu .mega-menu-brand { display: flex; justify-content: center; }
.w-header-side-menu ul li .mega-menu .mega-menu-brand a { margin: 0 27px; display: inline-block; border: 0; padding: 26px 0 20px; }
.w-header-side-menu ul li .mega-menu .mega-menu-brand a img { opacity: 0.5; }
.w-header-side-menu ul li .mega-menu .mega-menu-brand a .menu-text { display: none; }
.w-header-side-menu ul li .mega-menu .mega-menu-brand a:hover img { opacity: 1; }
.w-header-side-menu ul li .mega-menu .menu-shop-thumb a { border: 0; }
.w-header-side-menu ul li .mega-menu .menu-shop-thumb img { width: 70px; height: auto; object-fit: cover; margin-right: 17px; }
.w-header-side-menu ul li .mega-menu .menu-shop-item { padding-top: 14px; }
.w-header-side-menu ul li .mega-menu .menu-shop-item:not(:last-child) { padding-bottom: 15px; border-bottom: 1px solid #EAEBED; }
.w-header-side-menu ul li .mega-menu .menu-shop-meta span { font-size: 14px; line-height: 1; display: inline-block; 
margin-bottom: 1px; }
.w-header-side-menu ul li .mega-menu .menu-shop-meta span a { color: #55585B; font-size: 14px; }
.w-header-side-menu ul li .mega-menu .menu-shop-meta span a:hover { color: var(--thm-theme-green); }
.w-header-side-menu ul li .mega-menu .menu-shop-title { font-weight: 400; font-size: 16px; line-height: 0.7; }
.w-header-side-menu ul li .mega-menu .menu-shop-title a:hover { color: var(--thm-theme-green); }
.w-header-side-menu ul li .mega-menu .menu-shop-price { font-weight: 500; font-size: 15px; line-height: 1; letter-spacing: -0.02em;
color: var(--thm-common-black); }
.w-header-side-menu ul li .mega-menu .menu-shop-price.new-price { color: var(--thm-common-black); }
.w-header-side-menu ul li .mega-menu .menu-shop-price.old-price { font-weight: 400; font-size: 13px; 
text-decoration-line: line-through; color: var(--thm-text-1); }
.w-header-side-menu.sticky-active { display: none; }
.w-header-side-menu .home-menu-item:hover .home-menu-title { color: var(--thm-theme-green); }

/*** MENIUL PRINCIPAL *************************/
.main-menu > nav > ul > li { position: relative; list-style: none; display: inline-block; margin-right: 27px; }
.main-menu > nav > ul > li.has-mega-menu { position: static; }
.main-menu > nav > ul > li > a { display: inline-block; font-size: 16px; font-weight: 500; color: var(--thm-common-black);
padding: 23px 0; }
.main-menu > nav > ul > li.has-dropdown > a { position: relative; }
.main-menu > nav > ul > li.has-dropdown > a::after { content: "\f107"; -webkit-transform: translateY(1px); 
-moz-transform: translateY(1px); -ms-transform: translateY(1px); -o-transform: translateY(1px); transform: translateY(1px);
font-size: 14px; color: var(--thm-common-black); font-family: var(--thm-ff-fontawesome); font-weight: 400; margin-left: 5px;
display: inline-block; }
.main-menu > nav > ul > li > .w-submenu { position: absolute; top: 100%; left: 0; min-width: 200px; 
background: var(--thm-common-white); z-index: 99; visibility: hidden; opacity: 0;
box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08); padding: 12px 25px 20px; transform-origin: top; transition-duration: 0.1s;
-webkit-transform: perspective(300px) rotateX(-18deg); -moz-transform: perspective(300px) rotateX(-18deg);
-ms-transform: perspective(300px) rotateX(-18deg); -o-transform: perspective(300px) rotateX(-18deg); 
transform: perspective(300px) rotateX(-18deg); }
.main-menu > nav > ul > li > .w-submenu li { display: block; width: 100%; margin: 0; }
.main-menu > nav > ul > li > .w-submenu li:not(:last-child) { margin-right: 0; }
.main-menu > nav > ul > li > .w-submenu li.has-dropdown > a::after { position: absolute; right: 0; content: "\f107";
font-size: 14px; color: var(--thm-common-black); font-family: var(--thm-ff-fontawesome); font-weight: 400; margin-left: 5px;
display: inline-block; -webkit-transform: translateY(0%) rotate(-90deg); -moz-transform: translateY(0%) rotate(-90deg);
-ms-transform: translateY(0%) rotate(-90deg); -o-transform: translateY(0%) rotate(-90deg); 
transform: translateY(0%) rotate(-90deg); }
.main-menu > nav > ul > li > .w-submenu li a { padding: 3px 0; font-size: 14px; font-weight: 500; position: relative;
z-index: 1; color: var(--thm-text-body); width: 100%; display: block; }
.main-menu > nav > ul > li > .w-submenu li > .w-submenu { left: 120%; top: 0; visibility: hidden; opacity: 0; }
.main-menu > nav > ul > li > .w-submenu li:hover > a { color: var(--thm-theme-primary); }
.main-menu > nav > ul > li > .w-submenu li:hover > a::after { color: var(--thm-theme-primary); }
.main-menu > nav > ul > li .w-mega-menu { position: absolute; top: 100%; left: 0; right: 0; width: 100%;
background-color: var(--thm-common-white); box-shadow: 0px 20px 30px rgba(1, 15, 28, 0.1); z-index: 9; padding: 20px 20px 0;
visibility: hidden; opacity: 0; transition-duration: 0.1s; transform-origin: top; -webkit-transform: perspective(300px) rotateX(-18deg);
-moz-transform: perspective(300px) rotateX(-18deg); -ms-transform: perspective(300px) rotateX(-18deg);
-o-transform: perspective(300px) rotateX(-18deg); transform: perspective(300px) rotateX(-18deg); }
.main-menu > nav > ul > li .w-mega-menu.mega-menu-style-2 { padding: 25px 40px 0; }
.main-menu > nav > ul > li .w-mega-menu li { margin-bottom: 35px; float: left; width: 25%; overflow: hidden; }
.main-menu > nav > ul > li .w-mega-menu li.has-dropdown > a::after { display: none; }
.main-menu > nav > ul > li .w-mega-menu li .mega-menu-title { font-size: 16px; color: var(--thm-common-black);
display: block; margin-bottom: 7px; }
.main-menu > nav > ul > li .w-mega-menu ul li { float: none; width: 100%; line-height: 1; margin-bottom: 0; }
.main-menu > nav > ul > li .w-mega-menu ul li:not(:last-child) { margin-bottom: 9px; }
.main-menu > nav > ul > li .w-mega-menu .w-submenu { -webkit-transition: all 0.3s 0s ease-out; 
-moz-transition: all 0.3s 0s ease-out; -ms-transition: all 0.3s 0s ease-out; -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out; }
.main-menu > nav > ul > li:hover > a { color: var(--thm-theme-primary); }
.main-menu > nav > ul > li:hover > a::after { color: var(--thm-theme-primary); }
.main-menu > nav > ul > li:hover > .w-submenu { visibility: visible; opacity: 1; transition-duration: 0.2s; 
-webkit-transform: perspective(300px) rotateX(0deg); -moz-transform: perspective(300px) rotateX(0deg);
-ms-transform: perspective(300px) rotateX(0deg); -o-transform: perspective(300px) rotateX(0deg);
transform: perspective(300px) rotateX(0deg); }
.main-menu > nav > ul > li:hover > .w-mega-menu { visibility: visible; opacity: 1; transition-duration: 0.2s;
-webkit-transform: perspective(300px) rotateX(0deg); -moz-transform: perspective(300px) rotateX(0deg);
-ms-transform: perspective(300px) rotateX(0deg); -o-transform: perspective(300px) rotateX(0deg);
transform: perspective(300px) rotateX(0deg); }
.main-menu > nav > ul > li:hover > .w-mega-menu .w-submenu { visibility: visible; opacity: 1; transition-delay: 0s; }
.main-menu.menu-style-1 { padding-left: 7px; }
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.main-menu.menu-style-1 { padding-left: 0;   margin-right: -40px; } }
.main-menu.menu-style-1 > nav > ul > li { display: inline-block; }
.main-menu.menu-style-1 > nav > ul > li:not(:last-child) { margin-right: 25px; }
@media only screen and (min-width: 992px) and (max-width: 1199px) {
.main-menu.menu-style-1 > nav > ul > li:not(:last-child) { margin-right: 20px; } }
.main-menu.menu-style-1 > nav > ul > li > a { font-weight: 500; font-size: 14px; color: var(--thm-common-black); padding: 11px 0; }
.main-menu.menu-style-1 > nav > ul > li:hover > a { color: var(--thm-theme-primary); }
.main-menu.menu-style-2 { margin-left: -30px; }
.main-menu.menu-style-2 > nav > ul > li { margin-right: 20px; }
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
.main-menu.menu-style-2 > nav > ul > li { margin-right: 15px; } }
.main-menu.menu-style-2 > nav > ul > li > a { padding: 22px 0; }
.main-menu.menu-style-2 > nav > ul > li:hover > a { color: var(--thm-theme-secondary); }
.main-menu.menu-style-2 > nav > ul > li:hover > a::after { color: var(--thm-theme-secondary); }
.main-menu.menu-style-2 > nav > ul > li .w-submenu li:hover > a { color: var(--thm-theme-secondary); }
.main-menu.menu-style-2 > nav > ul > li .w-submenu li:hover > a::after { color: var(--thm-theme-secondary); }
.main-menu.menu-style-2 > nav > ul > li .home-menu-title a:hover { color: var(--thm-theme-secondary); }
.main-menu.menu-style-2 > nav > ul > li .home-menu-item:hover .home-menu-title { color: var(--thm-theme-secondary); }
.main-menu.menu-style-2 .w-menu-showcase-btn-2 { border-radius: 0; background-color: var(--thm-theme-secondary); }
.main-menu.menu-style-3 > nav > ul > li { text-align: left; }
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
.main-menu.menu-style-3 > nav > ul > li { margin-right: 20px; } }
.main-menu.menu-style-3 > nav > ul > li > a { padding: 17px 0; color: var(--thm-common-white); }
.main-menu.menu-style-3 > nav > ul > li.has-dropdown > a::after { color: var(--thm-common-white); }
.main-menu.menu-style-3 > nav > ul > li.w-menu-line { position: absolute !important; margin: 0; text-align: initial; display: block; }
.main-menu.menu-style-3 > nav > ul > li:hover > a { color: var(--thm-common-white); }
.main-menu.menu-style-3 > nav > ul > li:hover > a::after { color: var(--thm-common-white); }
.main-menu.menu-style-3 > nav > ul > li .home-menu-title a:hover { color: var(--thm-theme-brown); }
.main-menu.menu-style-3 > nav > ul > li .home-menu-item:hover .home-menu-title { color: var(--thm-theme-brown); }
.main-menu.menu-style-3 > nav > ul > li .w-submenu { text-align: left; }
.main-menu.menu-style-3 > nav > ul > li .w-submenu li:hover > a { color: var(--thm-theme-brown); }
.main-menu.menu-style-3 > nav > ul > li .w-submenu li:hover > a::after { color: var(--thm-theme-brown); }
.main-menu.menu-style-3 .w-menu-showcase-btn-2 { border-radius: 0; background-color: var(--thm-theme-brown); }
.main-menu.menu-style-3.menu-style-4 > nav > ul > li { text-align: left; }
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
.main-menu.menu-style-3.menu-style-4 > nav > ul > li { margin-right: 20px; } }
.main-menu.menu-style-3.menu-style-4 > nav > ul > li > a { color: rgba(255, 255, 255, 0.8); font-weight: 500; }
.main-menu.menu-style-3.menu-style-4 > nav > ul > li.has-dropdown > a::after { color: rgba(255, 255, 255, 0.8); }
.main-menu.menu-style-3.menu-style-4 > nav > ul > li:hover > a { color: var(--thm-common-white); }
.main-menu.menu-style-3.menu-style-4 > nav > ul > li:hover > a::after { color: var(--thm-common-white); }
.main-menu.menu-style-3.menu-style-4 > nav > ul > li .w-submenu { text-align: left; }
.main-menu.menu-style-3.menu-style-4 > nav > ul > li .w-submenu li a { color: var(--thm-common-black); }
.main-menu.menu-style-3.menu-style-4 > nav > ul > li .w-submenu li.has-dropdown > a::after { color: var(--thm-common-black); }
.main-menu.menu-style-3.menu-style-4 > nav > ul > li .w-submenu li:hover > a { color: var(--thm-theme-brown); }
.main-menu.menu-style-3.menu-style-4 > nav > ul > li .w-submenu li:hover > a::after { color: var(--thm-theme-brown); }
.home-menu-item { text-align: center; margin-bottom: 22px; }
.home-menu-item a { border: 0 !important; padding: 0 !important; }
.home-menu-item:hover .home-menu-thumb { box-shadow: none; }
.home-menu-item:hover .home-menu-thumb::after { opacity: 1; visibility: visible; }
.home-menu-item:hover .home-menu-title { color: var(--thm-theme-primary); }
.home-menu-item .menu-text { display: none !important; }
.home-menu-thumb {  position: relative; margin-bottom: 10px; box-shadow: 0px 2px 6px rgba(1, 15, 28, 0.2); }
.home-menu-thumb img { -webkit-transition: transform 0.2s 0s ease-out; -moz-transition: transform 0.2s 0s ease-out;
-ms-transition: transform 0.2s 0s ease-out; -o-transition: transform 0.2s 0s ease-out; transition: transform 0.2s 0s ease-out;
max-width: 100%; }
.home-menu-thumb::after { position: absolute; content: ""; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(1, 15, 28, 0.3);
visibility: hidden; opacity: 0; }
.home-menu-title { font-size: 20px; font-weight: 400; margin-bottom: 0; }
.home-menu-title a:hover { color: var(--thm-theme-primary); }
.shop-mega-menu { padding: 30px 40px 0 !important; padding-bottom: 30px !important; }
.shop-mega-menu-title { font-size: 16px; font-weight: 400; border-bottom: 1px solid #eee; padding-bottom: 7px; 
margin-bottom: 15px; display: block; color: var(--thm-common-black); }
.shop-mega-menu-img { position: relative; overflow: hidden; height: calc(100% - 30px); }
.shop-mega-menu-img:hover img { -webkit-transform: scale(1.1); -moz-transform: scale(1.1); -ms-transform: scale(1.1);
-o-transform: scale(1.1); transform: scale(1.1); }
.shop-mega-menu-img img { width: 100%; height: 100%; object-fit: cover; }
.shop-mega-menu-btn { position: absolute; bottom: 30px; left: 0; right: 0; text-align: center; }

/*** MEANMENIU ****************************/
.mean-remove { display: none !important; }
.mean-container { margin-bottom: 40px;}
.mean-container a.meanmenu-reveal { width: 22px; height: 22px; padding: 13px 13px 11px 13px; position: absolute; top: 0; right: 0;
cursor: pointer; color: #fff; text-decoration: none; font-size: 16px; text-indent: -9999em; line-height: 22px; font-size: 1px;
font-weight: 700; display: none !important; }
.mean-container a.meanmenu-reveal span { display: block; background: #fff; height: 3px; margin-top: 3px; }
.mean-container .mean-push { float: left; width: 100%; padding: 0; margin: 0; clear: both; }
.mean-container .mean-nav { background: none; margin-top: 0; float: left; width: 100%; background: transparent; }
.mean-container .mean-nav .wrapper { width: 100%; padding: 0; margin: 0; }
.mean-container .mean-nav > ul { padding: 0; margin: 0; width: 100%; list-style-type: none; display: block !important; }
.mean-container .mean-nav > ul > li:first-child > a { border-top: 0; }
.mean-container .mean-nav ul { padding: 0; margin: 0; width: 100%; list-style-type: none; }
.mean-container .mean-nav ul li { position: relative; float: left; width: 100%; }
.mean-container .mean-nav ul li.dropdown-opened > a, .mean-container .mean-nav ul li.dropdown-opened > span {
color: var(--thm-theme-primary); }
.mean-container .mean-nav ul li.dropdown-opened > a.mean-expand.mean-clicked, .mean-container .mean-nav ul li.dropdown-opened > span.mean-expand.mean-clicked {
color: var(--thm-theme-primary); -webkit-transform: rotate(90deg); -moz-transform: rotate(90deg); -ms-transform: rotate(90deg);
-o-transform: rotate(90deg); transform: rotate(90deg); }
.mean-container .mean-nav ul li.dropdown-opened > a.mean-expand.mean-clicked i, .mean-container .mean-nav ul li.dropdown-opened > span.mean-expand.mean-clicked i {
color: var(--thm-theme-primary); }
.mean-container .mean-nav ul li.has-dropdown:hover > a { color: var(--thm-theme-primary); }
.mean-container .mean-nav ul li.has-dropdown:hover .mean-expand { color: var(--thm-theme-primary); }
.mean-container .mean-nav ul li.mean-last { border-bottom: none; margin-bottom: 0; }
.mean-container .mean-nav ul li > a.mean-expand i { display: inline-block; }
.mean-container .mean-nav ul li > a > i { display: none; }
.mean-container .mean-nav ul li a { display: block; float: left; width: 90%; padding: 10px 5%; margin: 0; text-align: left;
color: #fff; border-top: 1px solid #e0e3ed; text-decoration: none; width: 100%; padding: 10px 0; color: var(--thm-common-black);
border-top: 1px solid #ebebeb; font-size: 14px; line-height: 1.5; font-weight: 500; }
.mean-container .mean-nav ul li a:hover { color: var(--thm-theme-primary); }
.mean-container .mean-nav ul li a:hover i { color: var(--thm-common-white); }
.mean-container .mean-nav ul li a.mean-expand { margin-top: 1px; text-align: center; position: absolute; right: 0; top: 0; z-index: 2;
font-weight: 700; background: transparent; border: none !important; font-size: 14px; margin-top: 5px; padding: 0 !important;
line-height: 14px; height: 30px; width: auto; line-height: 30px; color: var(--thm-common-black); line-height: 30px; top: 0;
font-weight: 400; }
.mean-container .mean-nav ul li a.mean-expand:hover { color: var(--thm-theme-primary); border-color: var(--thm-theme-primary); }
.mean-container .mean-nav ul li a.mean-expand:hover i { color: var(--thm-theme-primary); }
.mean-container .mean-nav ul li a.mean-expand.mean-clicked { color: var(--thm-theme-primary);} 
.mean-container .mean-nav ul li a.mean-expand.mean-clicked:hover { color: var(--thm-theme-primary); }
.mean-container .mean-nav ul li a.mean-expand.mean-clicked:hover i { color: var(--thm-theme-primary); }
.mean-container .mean-nav ul li li a { width: 80%; padding: 10px 10%; text-shadow: none !important; visibility: visible; }
.mean-container .mean-nav ul li li li a { width: 70%; padding: 10px 15%; }
.mean-container .mean-nav ul li li li li a { width: 60%; padding: 10px 20%; }
.mean-container .mean-nav ul li li li li li a { width: 50%; padding: 10px 25%; }
.mean-container .mean-bar, .mean-container .mean-bar * {
  /* Fix for box sizing on Foundation Framework etc. */
-webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; }

/*** MOBILE MENIU *********************************/
.w-mobile-menu { position: fixed; bottom: 0; left: 0; right: 0; width: 100%; background-color: var(--thm-common-white);
  padding: 13px 0 5px; z-index: 999; border-top: 1px solid var(--thm-border-primary); }
.w-mobile-menu.is-sticky { bottom: -120px; visibility: hidden; opacity: 0; }
.w-mobile-menu.is-sticky.bottom-menu-sticky { visibility: visible; opacity: 1; bottom: 0;}
.w-mobile-item-btn { font-size: 28px; text-align: center;}
.w-mobile-item-btn span { display: block; line-height: 1; font-size: 13px; margin-top: 3px; }
.w-mobile-item-btn:hover { color: var(--thm-common-black);}
.w-main-menu-mobile .w-submenu { display: none; }
.w-main-menu-mobile .w-mega-menu .shop-mega-menu-title { margin: 0; padding-top: 7px; }
.w-main-menu-mobile .w-mega-menu.shop-mega-menu { padding: 0 !important; padding-left: 19px !important; padding-top: 10px !important; }
.w-main-menu-mobile .w-mega-menu .shop-mega-menu-img { margin: 7px 0; }
.w-main-menu-mobile ul { position: static; display: block; box-shadow: none; }
.w-main-menu-mobile ul li { list-style: none; position: relative; width: 100%; padding: 0; padding-left: 20px;  padding-right: 20px; }
.w-main-menu-mobile ul li:not(:last-child) a { border-bottom: 1px solid rgba(1, 15, 28, 0.1); }
.w-main-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn { position: absolute; right: 0; top: 50%; font-size: 16px;
color: #7F8387; z-index: 1; width: 30px; height: 30px; line-height: 28px; text-align: center; border: 1px solid rgba(1, 15, 28, 0.12);
-webkit-transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
-moz-transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
-ms-transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
-o-transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out; }
.w-main-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn.dropdown-opened i { -webkit-transform: rotate(90deg); -moz-transform: rotate(90deg);
-ms-transform: rotate(90deg); -o-transform: rotate(90deg); transform: rotate(90deg); }
.w-main-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn:hover { background-color: var(--thm-theme-primary);
border-color: var(--thm-theme-primary); color: var(--thm-common-white); }
.w-main-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn:hover i { color: var(--thm-common-white); }
.w-main-menu-mobile ul li.has-dropdown > a.expanded { color: var(--thm-theme-primary); }
.w-main-menu-mobile ul li.has-dropdown > a.expanded .dropdown-toggle-btn.dropdown-opened { background-color: var(--thm-theme-primary);
border-color: var(--thm-theme-primary); color: var(--thm-common-white); }
.w-main-menu-mobile ul li.has-dropdown > a.expanded .dropdown-toggle-btn.dropdown-opened i { color: var(--thm-common-white); }
.w-main-menu-mobile ul li.has-dropdown:hover > a::after { color: var(--thm-theme-green); }
.w-main-menu-mobile ul li:last-child a span { border-bottom: 0; }
.w-main-menu-mobile ul li > a { display: block; font-size: 16px; color: var(--thm-common-black); position: relative; 
padding: 10px 0; padding-right: 20px; }
.w-main-menu-mobile ul li > a > i { display: inline-block; width: 11%; margin-right: 13px; -webkit-transform: translateY(4px);
-moz-transform: translateY(4px); -ms-transform: translateY(4px); -o-transform: translateY(4px); transform: translateY(4px);
font-size: 21px; line-height: 1; }
.w-main-menu-mobile ul li > a .menu-text { font-size: 16px; line-height: 11px; border-bottom: 1px solid #EAEBED; width: 82%;
display: inline-block; padding: 19px 0 17px; }
.w-main-menu-mobile ul li img { width: 100%; }
.w-main-menu-mobile ul li ul { padding: 0; }
.w-main-menu-mobile ul li ul li { padding: 0; }
.w-main-menu-mobile ul li ul li a { margin-left: auto; width: 93%; padding: 10px 5%; text-shadow: none !important; visibility: visible;
padding-left: 0; padding-right: 20px; }
.w-main-menu-mobile ul li ul li li a { width: 88%; padding: 10px 7%; padding-left: 0; padding-right: 20px; }
.w-main-menu-mobile ul li ul li li li a { width: 83%; padding: 10px 9%; padding-left: 0; padding-right: 20px; }
.w-main-menu-mobile ul li ul li li li li a { width: 68%; padding: 10px 11%; padding-left: 0; padding-right: 20px; }
.w-main-menu-mobile ul li:hover > a { color: var(--thm-theme-primary); }
.w-main-menu-mobile ul li:hover > a::after { color: var(--thm-theme-primary); }
.w-main-menu-mobile ul li:hover > a .dropdown-toggle-btn i { color: var(--thm-theme-primary); }
.w-main-menu-mobile ul li:hover .mega-menu { visibility: visible; opacity: 1; top: 0; }
.w-main-menu-mobile ul li .mega-menu, .w-main-menu-mobile ul li .submenu { position: static; min-width: 100%; padding: 0;
box-shadow: none; visibility: visible; opacity: 1; display: none; }
.w-main-menu-mobile ul li .mega-menu li, .w-main-menu-mobile ul li .submenu li { float: none; display: block; width: 100%;
padding: 0; }
.w-main-menu-mobile ul li .mega-menu li:hover a .dropdown-toggle-btn, .w-main-menu-mobile ul li .submenu li:hover a .dropdown-toggle-btn {
  color: var(--thm-theme-primary); }
.w-main-menu-mobile .w-main-menu-content ul li:not(:last-child) .home-menu-title a { border-bottom: none; }
.w-main-menu-mobile * ul, .w-main-menu-mobile * li { transition: none !important; }


/*** MENIU CATEGORII **************************************/
.w-category-menu { position: relative; }
.w-category-menu-btn { font-weight: 500; font-size: 14px; color: var(--thm-common-white); background-color: var(--thm-theme-primary);
  width: 100%; padding: 12px 30px; text-align: left; position: relative; }
.w-category-menu-btn::after { position: absolute; content: "\f107"; right: 30px; top: 50%; -webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%); -ms-transform: translateY(-50%); -o-transform: translateY(-50%); transform: translateY(-50%);
font-family: var(--thm-ff-fontawesome); }
.w-category-menu-btn span { margin-right: 8px; }
.w-category-menu-btn:hover { background-color: var(--thm-common-black); color: var(--thm-common-white); }
.w-category-menu nav ul { position: absolute; top: 100%; left: 0; width: 100%; background: #FFFFFF;
box-shadow: 0px 1px 3px rgba(1, 15, 28, 0.1); z-index: 9; display: none; }
.w-category-menu nav ul li { list-style: none; padding: 0 30px; position: relative; }
.w-category-menu nav ul li::after { position: absolute; content: ""; left: 0; top: 50%; width: 2px; height: 0;
background-color: var(--thm-theme-primary); -webkit-transform: translateY(-50%); -moz-transform: translateY(-50%);
-ms-transform: translateY(-50%); -o-transform: translateY(-50%); transform: translateY(-50%); visibility: hidden; opacity: 0; }
.w-category-menu nav ul li img { width: 100%; }
.w-category-menu nav ul li.has-dropdown > a:not(.mega-menu-title)::after { position: absolute; content: "\f105"; right: 0;
top: 50%; font-family: var(--thm-ff-fontawesome); font-size: 16px; -webkit-transform: translateY(-50%); -moz-transform: translateY(-50%);
-ms-transform: translateY(-50%); -o-transform: translateY(-50%); transform: translateY(-50%); color: var(--thm-text-6); }
.w-category-menu nav ul li:last-child a { border: none; }
.w-category-menu nav ul li a { font-size: 15px; color: var(--thm-text-2); display: inline-block; width: 100%; padding: 13px 0 12px;
border-bottom: 1px solid var(--thm-border-primary); background-color: var(--thm-common-white); font-weight: 500; position: relative; }
.w-category-menu nav ul li a span { color: var(--thm-text-6); margin-right: 5px; }
.w-category-menu nav ul li .w-submenu { position: absolute; left: 110%; top: 0%; visibility: hidden; opacity: 0; min-width: 300px;
background-color: var(--thm-common-white); -webkit-transition: all 0.3s 0s ease-out; -moz-transition: all 0.3s 0s ease-out;
-ms-transition: all 0.3s 0s ease-out; -o-transition: all 0.3s 0s ease-out; transition: all 0.3s 0s ease-out; padding-top: 10px;
padding-bottom: 10px; display: block; }
.w-category-menu nav ul li .w-submenu li a { font-size: 15px; padding: 6px 0 7px; }
.w-category-menu nav ul li .w-submenu li ul { display: block; }
.w-category-menu nav ul li .mega-menu { min-width: 850px; background: #FFFFFF; box-shadow: 0px 1px 3px rgba(1, 15, 28, 0.1);
z-index: 9; left: 100%; top: 110%; padding: 20px 30px 30px; padding-right: 5px; }
@media only screen and (min-width: 992px) and (max-width: 1199px) {
.w-category-menu nav ul li .mega-menu { min-width: 730px; } }
.w-category-menu nav ul li .mega-menu li { float: left; width: 33.33%; padding: 0; padding-right: 25px; }
.w-category-menu nav ul li .mega-menu li::after { display: none; }
.w-category-menu nav ul li .mega-menu li:last-child a.mega-menu-title { border-bottom: 0; }
.w-category-menu nav ul li .mega-menu li:first-child img { margin-bottom: 10px; width: 100%; }
.w-category-menu nav ul li .mega-menu li a { font-size: 14px; text-transform: none; }
.w-category-menu nav ul li .mega-menu li a.mega-menu-title { padding: 0; text-transform: uppercase; margin-bottom: 6px; border: 0; }
.w-category-menu nav ul li .mega-menu li::after { display: none; }
.w-category-menu nav ul li .mega-menu li ul { box-shadow: none; display: block; position: initial; }
.w-category-menu nav ul li .mega-menu li ul li { float: none; width: 100%; padding: 0; }
.w-category-menu nav ul li .mega-menu li ul li:not(:last-child) { margin-bottom: 4px; }
.w-category-menu nav ul li .mega-menu li ul li a { padding: 0; border-bottom: 0; }
.w-category-menu nav ul li:hover::after { visibility: visible; opacity: 1; height: 30px; }
.w-category-menu nav ul li:hover > a { color: var(--thm-theme-primary); }
.w-category-menu nav ul li:hover > a::after { color: var(--thm-theme-primary); }
.w-category-menu nav ul li:hover > a:not(.mega-menu-title)::after { color: var(--thm-theme-primary); }
.w-category-menu nav ul li:hover > a span { color: var(--thm-theme-primary); }
.w-category-menu nav ul li:hover > a .dropdown-toggle-btn { color: var(--thm-theme-primary); }
.w-category-menu nav ul li:hover > .w-submenu { opacity: 1; visibility: visible; left: 100%; }
.w-category-menu nav ul li:hover > .mega-menu { top: 0%; }
.w-category-mobile-menu ul { position: static; padding: 0 0; padding-top: 15px; box-shadow: none; }
.w-category-mobile-menu ul li { list-style: none; position: relative; width: 100%; padding: 0; padding-left: 20px; padding-right: 20px; }
.w-category-mobile-menu ul li:not(:last-child) a { border-bottom: 1px solid rgba(1, 15, 28, 0.1); }
.w-category-mobile-menu ul li:last-child { border-bottom: 0; }
.w-category-mobile-menu ul li a { display: block; font-size: 16px; color: var(--thm-common-black); position: relative; padding: 10px 0;
padding-right: 20px; }
.w-category-mobile-menu ul li a svg { margin-right: 3px; }
.w-category-mobile-menu ul li a > i { display: inline-block; width: 11%; margin-right: 13px; -webkit-transform: translateY(4px);
-moz-transform: translateY(4px); -ms-transform: translateY(4px); -o-transform: translateY(4px); transform: translateY(4px);
font-size: 21px; line-height: 1; }
.w-category-mobile-menu ul li a .menu-text { font-size: 16px; line-height: 11px; border-bottom: none; width: 82%;
display: inline-block; padding: 19px 0 17px; }
.w-category-mobile-menu ul li img { max-width: 100%; }
.w-category-mobile-menu ul li ul { padding: 0; }
.w-category-mobile-menu ul li ul li a { margin-left: auto; width: 93%; padding: 10px 5%; text-shadow: none !important;
visibility: visible; padding-left: 0; padding-right: 20px; }
.w-category-mobile-menu ul li ul li li a { width: 88%; padding: 10px 7%; padding-left: 0; padding-right: 20px; }
.w-category-mobile-menu ul li ul li li li a { width: 83%; padding: 10px 9%; padding-left: 0; padding-right: 20px; }
.w-category-mobile-menu ul li ul li li li li a { width: 68%; padding: 10px 11%; padding-left: 0; padding-right: 20px; }
.w-category-mobile-menu ul li:hover > a { color: var(--thm-theme-primary); }
.w-category-mobile-menu ul li:hover > a::after { color: var(--thm-theme-primary); }
.w-category-mobile-menu ul li:hover > a .dropdown-toggle-btn i { color: var(--thm-theme-primary); }
.w-category-mobile-menu ul li:hover .mega-menu { visibility: visible; opacity: 1; top: 0; }
.w-category-mobile-menu ul li.has-dropdown > a .dropdown-toggle-btn { position: absolute; right: 0; top: 50%; font-size: 16px;
color: #7F8387; z-index: 1; width: 30px; height: 30px; line-height: 28px; text-align: center;  border: 1px solid rgba(1, 15, 28, 0.12);
-webkit-transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
-moz-transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
-ms-transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
-o-transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out; }
.w-category-mobile-menu ul li.has-dropdown > a .dropdown-toggle-btn.dropdown-opened i { -webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg); -ms-transform: rotate(90deg); -o-transform: rotate(90deg); transform: rotate(90deg); }
.w-category-mobile-menu ul li.has-dropdown > a .dropdown-toggle-btn:hover { background-color: var(--thm-theme-primary);
border-color: var(--thm-theme-primary); color: var(--thm-common-white); }
.w-category-mobile-menu ul li.has-dropdown > a .dropdown-toggle-btn:hover i { color: var(--thm-common-white); }
.w-category-mobile-menu ul li.has-dropdown > a.expanded { color: var(--thm-theme-primary); }
.w-category-mobile-menu ul li.has-dropdown > a.expanded .dropdown-toggle-btn.dropdown-opened {
background-color: var(--thm-theme-primary); border-color: var(--thm-theme-primary); color: var(--thm-common-white); }
.w-category-mobile-menu ul li.has-dropdown > a.expanded .dropdown-toggle-btn.dropdown-opened i { color: var(--thm-common-white); }
.w-category-mobile-menu ul li.has-dropdown:hover > a::after { color: var(--thm-theme-green); }
.w-category-mobile-menu ul li:last-child a span { border-bottom: 0; }
.w-category-mobile-menu ul li .w-mega-menu, .w-category-mobile-menu ul li .w-submenu { position: static; min-width: 100%;
padding: 0; box-shadow: none; visibility: visible; opacity: 1; display: none; }
.w-category-mobile-menu ul li .w-mega-menu li, .w-category-mobile-menu ul li .w-submenu li { float: none; display: block;
width: 100%; padding: 0; }
.w-category-mobile-menu ul li .w-mega-menu li:hover a .dropdown-toggle-btn, .w-category-mobile-menu ul li .w-submenu li:hover a .dropdown-toggle-btn {
color: var(--thm-theme-primary); }
.w-category-mobile-menu ul li .mega-menu-brand a { display: inline-block; border: 0; padding-right: 18px; }
.w-category-mobile-menu ul li .mega-menu-right { background-color: transparent !important; }
.w-category-mobile-menu ul li .menu-shop-thumb { width: 90px; margin-right: 15px; }
.w-category-mobile-menu ul li .menu-shop-thumb a { border: none; }
.w-category-mobile-menu ul li .menu-shop-thumb .menu-text { display: none; }
.w-category-mobile-menu ul li .menu-shop-meta span a { padding: 0; border-bottom: 0; font-size: 14px; }
.w-category-mobile-menu ul li .menu-shop-title a { padding: 0; border-bottom: 0; }
.w-category-mobile-menu ul li .mega-menu-right-title { margin-bottom: 15px; padding-top: 15px; }
.w-category-mobile-menu nav { display: none; }
.w-category-mobile-menu * ul, .w-category-mobile-menu * li { transition: none !important; }
.w-category-mobile-menu .mega-menu-list > ul { padding-top: 20px; }

/*** LISTARE BLOG AND DETALII ****************************/
.w-postbox-text p { font-size: 16px; line-height: 1.6; margin-bottom: 30px; text-align: justify !important; }
.w-postbox-meta { margin-bottom: 10px; }
.w-postbox-meta span { display: inline-block; }
.w-postbox-meta span i, .w-postbox-meta span svg { color: var(--thm-theme-primary); margin-right: 3px; }
.w-postbox-meta span:not(:last-child) { margin-right: 20px; }
.w-postbox-meta span a:hover { color: var(--thm-theme-primary); }
.w-postbox-title { font-size: 38px; margin-bottom: 12px; font-weight: 500; }
@media only screen and (min-width: 992px) and (max-width: 1199px) { .w-postbox-title { font-size: 35px; } }
@media only screen and (min-width: 768px) and (max-width: 991px) { .w-postbox-title { font-size: 35px; } }
@media only screen and (min-width: 576px) and (max-width: 767px) { .w-postbox-title { font-size: 30px; } }
@media (max-width: 575px) { .w-postbox-title { font-size: 25px; } }
.w-postbox-title a:hover { color: var(--thm-theme-primary); }
.w-postbox-thumb { margin-bottom: 30px; }
.w-postbox-video .w-postbox-video-btn { position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); -o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%); color: var(--thm-common-black); border-radius: 50%; display: inline-block; width: 80px;
height: 80px; line-height: 80px; text-align: center; background-color: var(--thm-common-white); -webkit-animation: w-pulse-2 2s infinite;
-moz-animation: w-pulse-2 2s infinite; -ms-animation: w-pulse-2 2s infinite; -o-animation: w-pulse-2 2s infinite; animation: w-pulse-2 2s infinite; }
.w-postbox-video .w-postbox-video-btn:hover { color: var(--thm-common-white); background-color: var(--thm-theme-primary); }
.w-postbox-audio { height: 420px; }
.w-postbox-audio iframe { width: 100%; height: 100%; }
.w-postbox-nav button { width: 50px; height: 50px; text-align: center; line-height: 48px; background-color: var(--thm-common-white);
color: var(--thm-common-black); position: absolute; top: 50%; left: 15px; -webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%); -ms-transform: translateY(-50%); -o-transform: translateY(-50%); transform: translateY(-50%);
z-index: 1; font-size: 18px; }
.w-postbox-nav button:hover { background-color: var(--thm-theme-primary); border-color: var(--thm-theme-primary);
color: var(--thm-common-white); }
.w-postbox-nav button.w-postbox-slider-button-next { right: 15px; left: auto; }
.w-postbox-details-category { margin-bottom: 6px; }
.w-postbox-details-category span { font-size: 20px; color: var(--thm-theme-primary); display: inline-block; }
.w-postbox-details-title { font-size: 52px; font-weight: 500; line-height: 1.07; margin-bottom: 12px; }
@media only screen and (min-width: 768px) and (max-width: 991px) {.w-postbox-details-title { font-size: 46px; } }
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-postbox-details-title { font-size: 34px; } }
.w-postbox-details-meta span { font-size: 15px; position: relative; display: inline-block; }
.w-postbox-details-meta span:not(:last-child) { margin-right: 13px; padding-right: 9px; }
.w-postbox-details-meta span:not(:last-child)::after { position: absolute; content: ""; right: 0; top: 50%; width: 1px;
height: 20px; background-color: #E6E7E8; }
.w-postbox-details-meta span i, .w-postbox-details-meta span svg { margin-right: 1px; }
.w-postbox-details-meta span[data-meta=author] svg { -webkit-transform: translateY(-3px); -moz-transform: translateY(-3px);
-ms-transform: translateY(-3px); -o-transform: translateY(-3px); transform: translateY(-3px); }
.w-postbox-details-thumb { text-align: center; }
.w-postbox-details-thumb img { margin-bottom: 50px; max-width: 100%; min-width: 90%; margin: 0px auto 55px auto; }
.w-postbox-details-content p { font-size: 18px; line-height: 1.56; margin-bottom: 23px; }
.w-postbox-details-main-wrapper { padding-right: 70px; }
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-postbox-details-main-wrapper { padding-right: 0; } }
.w-postbox-details-heading { font-weight: 500; font-size: 34px; letter-spacing: -0.02em; margin-bottom: 12px; margin-top: 43px; }
@media only screen and (min-width: 576px) and (max-width: 767px) {
.w-postbox-details-heading { font-size: 25px; } }
@media (max-width: 575px) { .w-postbox-details-heading { font-size: 24px; } }
.w-postbox-details-desc-thumb { padding-left: 78px; padding-right: 78px; margin-top: 52px; margin-bottom: 35px; }
@media only screen and (min-width: 576px) and (max-width: 767px) {
.w-postbox-details-desc-thumb { padding-left: 28px; padding-right: 28px; } }
@media (max-width: 575px) {.w-postbox-details-desc-thumb { padding-left: 15px; padding-right: 15px; } }
.w-postbox-details-desc-thumb img { max-width: 100%; }
.w-postbox-details-desc-thumb-caption { font-size: 14px; color: var(--thm-text-body); margin-top: 7px; display: inline-block; }
.w-postbox-details-quote { margin-bottom: 10px; margin-top: 50px; }
.w-postbox-details-quote p { line-height: 1.31; font-size: 26px; margin-bottom: 15px; }
.w-postbox-details-list { padding-top: 6px; margin-bottom: 35px; }
.w-postbox-details-list ul li { list-style: none; position: relative; padding-left: 15px; font-size: 18px; color: var(--thm-common-black); }
.w-postbox-details-list ul li:not(:last-child) { margin-bottom: 7px; }
.w-postbox-details-list ul li::after { position: absolute; content: ""; top: 11px; left: 0; width: 4px; height: 4px; 
background-color: var(--thm-text-body); border-radius: 50%; }
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-postbox-details-tags { margin-bottom: 15px; } }
.w-postbox-details-tags span { font-size: 16px; font-weight: 500; color: var(--thm-common-black); margin-right: 5px; }
.w-postbox-details-tags.tagcloud { padding-top: 0; border: 0; }
.w-postbox-details-share-wrapper { padding-top: 21px; padding-bottom: 33px; }
.w-postbox-details-share span { font-size: 16px; font-weight: 500; color: var(--thm-common-black); margin-right: 5px; }
.w-postbox-details-share a { display: inline-block; width: 38px; height: 38px; line-height: 36px; text-align: center; 
border: 1px solid #E6E7E8; }
.w-postbox-details-share a:hover { background-color: var(--thm-theme-primary); border-color: var(--thm-theme-primary);
color: var(--thm-common-white); }
.w-postbox-details-share-2 {  position: sticky; top: 120px; width: 55px; box-shadow: 0px 30px 40px rgba(1, 15, 28, 0.1); }
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-postbox-details-share-2 { width: auto; display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex;
display: flex; margin-bottom: 45px; flex-wrap: wrap; } }
.w-postbox-details-share-2 span { font-weight: 500; font-size: 13px; line-height: 1.23; display: inline-block; text-align: center;
padding-top: 18px; color: var(--thm-common-black); padding-bottom: 16px; border-bottom: 1px solid #E6E7E8; }
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-postbox-details-share-2 span { border-bottom: 0; border-right: 1px solid #E6E7E8; padding-left: 15px; padding-right: 15px; } }
.w-postbox-details-share-2 ul { display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex;
flex-wrap: wrap;}
.w-postbox-details-share-2 ul li { list-style: none;}
.w-postbox-details-share-2 ul li:not(:last-child) { border-bottom: 1px solid #E6E7E8; }
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-postbox-details-share-2 ul li:not(:last-child) { border-bottom: 0; border-right: 1px solid #E6E7E8; } }
.w-postbox-details-share-2 ul li a { display: inline-block; width: 55px; height: 55px; line-height: 58px; text-align: center; }
.w-postbox-details-share-2 ul li a:hover { color: var(--thm-theme-primary); }
.w-postbox-details-navigation { position: relative; padding: 35px 0 30px; border-top: 1px solid #E0E2E3; }
.w-postbox-details-navigation::after { position: absolute; content: ""; left: 50%; top: 50%; -webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); -o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%); background-color: #E0E2E3; width: 1px; height: 80px; }
.w-postbox-details-navigation-icon span { color: var(--thm-common-black); font-size: 18px; }
.w-postbox-details-navigation-icon span:hover { color: var(--thm-theme-primary); }
.w-postbox-details-navigation-content span { font-size: 15px; display: inline-block; }
.w-postbox-details-navigation-title { font-size: 18px; font-weight: 500; line-height: 1.22; }
.w-postbox-details-navigation-title a:hover { color: var(--thm-theme-primary); }
.w-postbox-details-author { padding: 34px 44px 38px 45px; margin-bottom: 90px; }
@media (max-width: 575px) { .w-postbox-details-author { padding: 25px; } }
.w-postbox-details-author-thumb img { width: 90px; height: 90px; object-fit: cover; border-radius: 50%; margin-right: 20px; }
@media (max-width: 575px) {
.w-postbox-details-author-thumb img { margin-right: 0; margin-bottom: 20px; } }
.w-postbox-details-author-content span { font-size: 15px; display: inline-block; }
.w-postbox-details-author-content p { font-size: 16px; line-height: 1.6; margin-bottom: 19px; }
.w-postbox-details-author-title { font-size: 20px; font-weight: 500; margin-bottom: 10px; }
.w-postbox-details-author-title a:hover { color: var(--thm-theme-primary); }
.w-postbox-details-author-social a { display: inline-block; width: 34px; height: 34px; line-height: 34px; text-align: center;
background-color: #fff; box-shadow: 0px 1px 1px rgba(1, 15, 28, 0.2); }
.w-postbox-details-author-social a:hover { background-color: var(--thm-theme-primary); border-color: var(--thm-theme-primary);
color: var(--thm-common-white); }
.w-postbox-details-comment-wrapper { margin-bottom: 90px; }
.w-postbox-details-comment-inner ul.children { margin-left: 77px; }
@media (max-width: 575px) {
.w-postbox-details-comment-inner ul.children {
    margin-left: 35px;
  }
}
.w-postbox-details-comment-inner ul li {
  list-style: none;
}
.w-postbox-details-comment-box {
  margin-bottom: 34px;
}
.w-postbox-details-comment-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 27px;
}
.w-postbox-details-comment-thumb img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 17px;
}
@media (max-width: 575px) {
  .w-postbox-details-comment-thumb img {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.w-postbox-details-comment-top {
  margin-bottom: 8px;
}
.w-postbox-details-comment-avater-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
}
.w-postbox-details-comment-avater-title a:hover {
  color: var(--thm-theme-primary);
}
.w-postbox-details-comment-avater-meta {
  font-size: 14px;
  color: var(--thm-text-body);
  display: inline-block;
}
.w-postbox-details-comment-content {
  width: 100%;
  padding-bottom: 15px;
  border-bottom: 1px solid #E0E2E3;
}
.w-postbox-details-comment-content p {
  font-size: 14px;
  line-height: 1.57;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-postbox-details-comment-content p br {
    display: none;
  }
}
.w-postbox-details-comment-reply a {
  font-size: 15px;
  color: var(--thm-text-body);
  display: inline-block;
  line-height: 1;
  border: 1px solid #E6E7E8;
  padding: 6px 13px;
}
.w-postbox-details-comment-reply a:hover {
  background-color: var(--thm-theme-primary);
  border-color: var(--thm-theme-primary);
  color: var(--thm-common-white);
}
.w-postbox-details-form > p {
  line-height: 1;
  font-size: 16px;
  margin-bottom: 43px;
}
.w-postbox-details-form-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 8px;
}
.w-postbox-details-form-inner {
  margin-bottom: 6px;
}
.w-postbox-details-input-wrapper {
  margin-bottom: 8px;
}
.w-postbox-details-input-box {
  position: relative;
}
.w-postbox-details-input-box:not(:last-child) {
  margin-bottom: 34px;
}
.w-postbox-details-input input {
  height: 56px;
  background: #FFFFFF;
  border: 1px solid #E0E2E3;
  font-size: 14px;
  color: var(--thm-common-black);
}
.w-postbox-details-input input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #95999D;
}
.w-postbox-details-input input::-moz-placeholder { /* Firefox 19+ */
  color: #95999D;
}
.w-postbox-details-input input:-moz-placeholder { /* Firefox 4-18 */
  color: #95999D;
}
.w-postbox-details-input input:-ms-input-placeholder { /* IE 10+  Edge*/
  color: #95999D;
}
.w-postbox-details-input input::placeholder { /* MODERN BROWSER */
  color: #95999D;
}
.w-postbox-details-input textarea {
  height: 165px;
  resize: none;
}
.w-postbox-details-input-title label {
  font-size: 14px;
  color: var(--thm-common-black);
  position: absolute;
  top: -7px;
  left: 20px;
  padding: 0 5px;
  background-color: var(--thm-common-white);
  line-height: 1;
}
.w-postbox-details-input-eye {
  position: absolute;
  right: 26px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.w-postbox-details-input-eye .open-eye {
  display: none;
}
.w-postbox-details-input-eye:hover {
  cursor: pointer;
}
.w-postbox-details-input-eye:hover span {
  color: var(--thm-common-black);
}
.w-postbox-details-input-btn {
  font-size: 16px;
  color: var(--thm-common-white);
  font-weight: 500;
  background-color: var(--thm-theme-primary);
  padding: 9px 30px;
}
.w-postbox-details-input-btn:hover {
  background-color: var(--thm-common-black);
  color: var(--thm-common-white);
}
.w-postbox-details-remeber input {
  display: none;
}
.w-postbox-details-remeber input:checked ~ label::after {
  background-color: var(--thm-theme-primary);
  border-color: var(--thm-theme-primary);
}
.w-postbox-details-remeber input:checked ~ label::before {
  visibility: visible;
  opacity: 1;
}
.w-postbox-details-remeber label {
  font-size: 15px;
  color: #55585B;
  position: relative;
  padding-left: 26px;
  z-index: 1;
}
.w-postbox-details-remeber label::after {
  position: absolute;
  content: "";
  top: 4px;
  left: 0;
  width: 18px;
  height: 18px;
  line-height: 16px;
  text-align: center;
  border: 1px solid #C3C7C9;
  z-index: -1;
  -webkit-transition: all 0.2s 0s ease-out;
  -moz-transition: all 0.2s 0s ease-out;
  -ms-transition: all 0.2s 0s ease-out;
  -o-transition: all 0.2s 0s ease-out;
  transition: all 0.2s 0s ease-out;
}
.w-postbox-details-remeber label::before {
  position: absolute;
  content: url("../images/icons/check.svg");
  top: 4px;
  left: 0;
  width: 18px;
  height: 18px;
  line-height: 16px;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  color: var(--thm-common-white);
  -webkit-transition: all 0.2s 0s ease-out;
  -moz-transition: all 0.2s 0s ease-out;
  -ms-transition: all 0.2s 0s ease-out;
  -o-transition: all 0.2s 0s ease-out;
  transition: all 0.2s 0s ease-out;
}
.w-postbox-details-remeber label a:hover {
  color: var(--thm-theme-primary);
}
.w-postbox-details-remeber label:hover {
  cursor: pointer;
}
.w-postbox-style2 {
  padding-right: 0;
}
.w-postbox-related-title {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 35px;
}

blockquote {
  background: var(--thm-theme-primary);
  padding: 45px 58px;
  margin-bottom: 35px;
  position: relative;
  z-index: 1;
}
@media (max-width: 575px) {
  blockquote {
    padding-left: 15px;
    padding-right: 15px;
  }
}
blockquote p {
  line-height: 1.31;
  font-size: 26px;
  color: #fff;
  font-weight: 400;
}
blockquote cite {
  font-size: 18px;
  display: block;
  margin-top: 10px;
  color: #fff;
  font-style: inherit;
  font-weight: 600;
  position: relative;
}
blockquote cite::before {
  content: "";
  font-size: 28px;
  color: #fff;
  padding-bottom: 0px;
  display: inline-block;
  background: #fff;
  height: 2px;
  width: 40px;
  font-weight: 400;
  text-align: center;
  top: -4px;
  margin-right: 10px;
  position: relative;
}
blockquote .w-postbox-details-quote-shape-1 {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
}
blockquote .w-postbox-details-quote-shape-2 {
  position: absolute;
  z-index: -1;
  left: 30px;
  top: 30px;
}

/*** BLOG POSTARI RECENTE **********************/
.w-sidebar-blog-item-wrapper {
  padding: 10px 15px;
  border: 1px solid #E0E2E3;
}
.w-sidebar-blog-item {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #EAEBED;
}
.w-sidebar-blog-item:last-child {
  border-bottom: none !important;
}

.w-sidebar-blog-thumb img {
  width: 92px;
  height: auto;
  object-fit: cover;
  margin-right: 14px;
  border-radius: 8px;
  border: solid 1px #ccc;
}
.w-sidebar-blog-title {
  font-size: 14px;
  font-weight: 600;
}
.w-sidebar-blog-title a:hover {
  color: var(--thm-theme-primary);
}
.w-sidebar-blog-meta span {
  font-size: 12px;
  color: #BD844C;
}
.w-sidebar-blog-meta span a:hover {
  color: var(--thm-theme-secondary);
}

/*** SLILIZARE SIDEBAR ******************************/
.w-sidebar-wrapper {
  position: sticky;
  top: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-sidebar-wrapper {
    margin-top: 60px;
  }
}
.w-sidebar-ml--24 {
  margin-left: -24px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-sidebar-ml--24 {
    margin-left: 0;
  }
}
.w-sidebar-widget-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 14px;
}
.w-sidebar-widget ul li {
  list-style: none;
}
.w-sidebar-widget ul li:not(:last-child) {
  margin-bottom: 10px;
}
.w-sidebar-widget ul li a {
  position: relative;
  padding-left: 16px;
  font-size: 16px;
  color: #55585B;
  display: block;
}
.w-sidebar-widget ul li a span {
  float: right;
}
.w-sidebar-widget ul li a::after {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  background-color: #CED2D6;
  border-radius: 50%;
  left: 0;
  top: 12px;
}
.w-sidebar-widget ul li a:hover {
  color: var(--thm-theme-primary);
}
.w-sidebar-widget ul li ul {
  padding-left: 15px;
  padding-top: 6px;
}
.w-sidebar-widget.widget_categories .w-sidebar-widget-content {
  padding: 25px 25px 31px;
  border: 1px solid #E0E2E3;
}
.w-sidebar-search-input {
  position: relative;
}
.w-sidebar-search-input input {
  border: 1px solid #E0E2E3;
  height: 50px;
  padding-right: 50px;
  font-size: 16px;
}
.w-sidebar-search-input input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #95999D;
}
.w-sidebar-search-input input::-moz-placeholder { /* Firefox 19+ */
  color: #95999D;
}
.w-sidebar-search-input input:-moz-placeholder { /* Firefox 4-18 */
  color: #95999D;
}
.w-sidebar-search-input input:-ms-input-placeholder { /* IE 10+  Edge*/
  color: #95999D;
}
.w-sidebar-search-input input::placeholder { /* MODERN BROWSER */
  color: #95999D;
}
.w-sidebar-search-input button {
  position: absolute;
  top: 50%;
  right: 25px;
  color: var(--thm-common-black);
  font-size: 16px;
}
.w-sidebar-search-input button:hover {
  color: var(--thm-theme-primary);
}
.w-sidebar-about {
  padding: 40px 40px 35px;
  text-align: center;
  border: 1px solid #E0E2E3;
}
.w-sidebar-about-thumb img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
}
.w-sidebar-about-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 0;
}
.w-sidebar-about-title a:hover {
  color: var(--thm-theme-primary);
}
.w-sidebar-about-designation {
  color: #A0A2A4;
  font-size: 15px;
  display: inline-block;
  margin-bottom: 10px;
}
.w-sidebar-about-content p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.tagcloud {
  padding-top: 24px;
  border-top: 1px solid #E0E2E3;
}
.tagcloud a {
  font-size: 15px;
  color: var(--thm-text-body);
  padding: 5px 13px;
  line-height: 1;
  display: inline-block;
  border: 1px solid #E6E7E8;
  margin-bottom: 8px;
}
.tagcloud a:hover {
  background-color: var(--thm-theme-primary);
  border-color: var(--thm-theme-primary);
  color: var(--thm-common-white);
}

/*** ARTICOLE BLOG ***************************************/
.w-blog-thumb {
  border-radius: 8px;
  height: 270px;
  border-top-left-radius: 0;
  margin-bottom: 22px;
}
div.w-blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1) !important;
  transition: all 300ms ease-in-out;
}
div.w-blog-thumb:hover img {
  transform: scale(1.15) !important;
  transition: all 300ms ease-in-out;
}

.w-blog-meta-date {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.w-blog-meta-date span {
  display: inline-block;
  padding: 3px 24px 2px;
  background-color: var(--thm-common-black);
  font-weight: 500;
  font-size: 14px;
  color: var(--thm-common-white);
}
.w-blog-tag {
  line-height: 1;
  margin-bottom: 17px;
}
.w-blog-tag > span {
  color: var(--thm-theme-primary);
}
.w-blog-tag a {
  font-weight: 500;
  font-size: 14px;
  color: var(--thm-text-2);
}
.w-blog-tag a:hover {
  color: var(--thm-theme-primary);
}
.w-blog-title {
  font-weight: 500;
  font-size: 18px;
}
.w-blog-title a:hover {
  color: var(--thm-theme-primary);
}
.w-blog-content p {
  font-size: 14px;
  line-height: 1.43;
  margin-bottom: 30px;
}
.w-blog-more {
  position: relative;
  background-color: var(--thm-common-white);
  padding-left: 50px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-blog-more {
    padding-left: 0;
  }
}
.w-blog-more-border {
  position: absolute;
  right: 0;
  top: 50%;
  width: 630px;
  height: 2px;
  background-color: var(--thm-border-secondary);
  z-index: -1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .w-blog-more-border {
    width: 470px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .w-blog-more-border {
    width: 330px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-blog-more-border {
    display: none;
  }
}

.w-blog-item-2:hover .w-blog-thumb-2 img {
  -webkit-transform: scale(1.1) rotate(4deg);
  -moz-transform: scale(1.1) rotate(4deg);
  -ms-transform: scale(1.1) rotate(4deg);
  -o-transform: scale(1.1) rotate(4deg);
  transform: scale(1.1) rotate(4deg);
}
.w-blog-title-2 {
  font-weight: 400;
  font-size: 24px;
  line-height: 1.33;
}
.w-blog-title-2 a:hover {
  color: var(--thm-theme-secondary);
}
.w-blog-thumb-2 img {
  width: 100%;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-blog-thumb-2 img {
    width: 100%;
  }
}
.w-blog-content-2.has-thumbnail {
  padding-top: 25px;
}
.w-blog-meta-2 {
  margin-bottom: 4px;
}
.w-blog-meta-2 span {
  color: var(--thm-common-black);
}
.w-blog-meta-2 a {
  font-size: 16px;
  position: relative;
}
.w-blog-meta-2 a::after {
  position: absolute;
  content: "";
  left: auto;
  right: 0;
  bottom: 3px;
  width: 0;
  height: 1px;
  background-color: var(--thm-theme-secondary);
}
.w-blog-meta-2 a:hover {
  color: var(--thm-theme-secondary);
}
.w-blog-meta-2 a:hover::after {
  left: 0;
  right: auto;
  width: 100%;
}
.w-blog-meta-2 a:hover {
  color: var(--thm-theme-secondary);
}
.w-blog-meta-date-2 {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
}
.w-blog-meta-date-2 span {
  font-size: 14px;
  line-height: 1;
  color: var(--thm-common-black);
  background-color: var(--thm-common-white);
  padding: 5px 16px;
}

/*** STILIZARE GRID BLOG *************************************/
.w-blog-grid-wrapper {
  margin-right: 64px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-blog-grid-wrapper {
    margin-right: 0;
  }
}
.w-blog-grid-item {
  border: 1px solid #E0E2E3;
}
.w-blog-grid-item:hover .w-blog-grid-thumb img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.w-blog-grid-meta {
  margin-bottom: 11px;
}
.w-blog-grid-meta > span {
  font-size: 15px;
  position: relative;
  display: inline-block;
}
.w-blog-grid-meta > span:not(:last-child) {
  padding-right: 8px;
  margin-right: 12px;
}
.w-blog-grid-meta > span:not(:last-child)::after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  background-color: #E6E7E8;
  width: 1px;
  height: 20px;
}
.w-blog-grid-meta > span a:hover {
  color: var(--thm-theme-primary);
}
.w-blog-grid-meta span span {
  margin-right: 1px;
}
.w-blog-grid-title {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 13px;
}
@media (max-width: 575px) {
  .w-blog-grid-title {
    font-size: 24px;
  }
}
.w-blog-grid-title a:hover {
  color: var(--thm-theme-primary);
}
.w-blog-grid-content {
  padding: 0 30px 32px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .w-blog-grid-content {
    padding: 0 15px 32px;
  }
}
.w-blog-grid-content p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.w-blog-grid-top {
  border: 1px solid rgba(1, 15, 28, 0.1);
  padding: 6px 20px 6px 25px;
}
.w-blog-grid-result p {
  color: #818487;
  margin-bottom: 0;
}
.w-blog-grid-tab .nav-tabs .nav-link {
  color: #818487;
  font-size: 20px;
  position: relative;
}
.w-blog-grid-tab .nav-tabs .nav-link#nav-grid-tab {
  -webkit-transform: translateY(-1px);
  -moz-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  -o-transform: translateY(-1px);
  transform: translateY(-1px);
}
.w-blog-grid-tab .nav-tabs .nav-link:not(:last-child) {
  margin-right: 13px;
  padding-right: 13px;
}
.w-blog-grid-tab .nav-tabs .nav-link:not(:last-child)::after {
  position: absolute;
  content: "";
  right: 0;
  top: 5px;
  width: 1px;
  height: 20px;
  background-color: rgba(1, 15, 28, 0.1);
}
.w-blog-grid-tab .nav-tabs .nav-link.active {
  color: var(--thm-common-black);
}
.w-blog-grid-style2 {
  border: 0;
  background-color: var(--thm-common-white);
  box-shadow: 0px 1px 2px rgba(1, 15, 28, 0.1);
}

.w-blog-list-item {
  border: 1px solid #E0E2E3;
  margin-bottom: 30px;
}
.w-blog-list-item:not(:last-child) {
  margin-bottom: 20px;
}
.w-blog-list-item:hover .w-blog-list-thumb img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.w-blog-list-thumb {
  width: 383px;
  flex: 0 0 auto;
  overflow: hidden;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-blog-list-thumb {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .w-blog-list-thumb {
    width: 340px;
  }
}
.w-blog-list-thumb img {
  max-width: 100%;
  height: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-blog-list-thumb img {
    width: 100%;
  }
}
.w-blog-list-content .w-blog-grid-title {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 12px;
}
@media (max-width: 575px) {
  .w-blog-list-content .w-blog-grid-title {
    font-size: 24px;
  }
}
.w-blog-list-content .w-blog-grid-meta {
  margin-bottom: 5px;
}
.w-blog-list-content .w-blog-grid-content {
  padding: 40px 40px 45px 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .w-blog-list-content .w-blog-grid-content {
    padding: 40px 30px 45px 30px;
  }
}
@media (max-width: 575px) {
  .w-blog-list-content .w-blog-grid-content {
    padding: 25px 20px 30px 20px;
  }
}
.w-blog-list-content .w-blog-grid-content p {
  margin-bottom: 23px;
}

/*** FOOTER ******************************************/
.w-footer-widget-title {
  font-weight: 700;
  font-size: 20px;
  color: var(--thm-common-black);
  margin-bottom: 10px;
}
.w-footer-widget-content ul li {
  list-style: none;
}
.w-footer-widget-content ul li:not(:last-child) {
  margin-bottom: 7px;
}
.w-footer-widget-content ul li a {
  font-weight: 500;
  font-size: 14px;
  color: var(--thm-text-2);
  position: relative;
  padding-left: 10px;
}
.w-footer-widget-content ul li a::after {
  position: absolute;
  content: "";
  left: 0;
  top: 6px;
  width: 3px;
  height: 3px;
  background-color: var(--thm-text-2);
  border-radius: 50%;
}
.w-footer-widget-content ul li a:hover {
  color: var(--thm-theme-primary);
}
.w-footer-widget-content ul li a:hover::after {
  background-color: var(--thm-theme-primary);
}

.w-footer-logo {
  margin-bottom: 22px;
}
.w-footer-desc {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: var(--thm-common-black);
  margin-bottom: 22px;
}
.w-footer-social a {
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  background: #FFFFFF;
  box-shadow: 0px 1px 1px rgba(1, 15, 28, 0.2);
  border-radius: 6px;
}
.w-footer-social a:hover {
  background-color: var(--thm-theme-primary);
  color: var(--thm-common-white);
  box-shadow: none;
}
.w-footer-talk span {
  font-size: 14px;
  color: var(--thm-text-2);
  display: inline-block;
}
.w-footer-talk h4 {
  font-weight: 700;
  font-size: 22px;
  color: var(--thm-common-black);
}
.w-footer-talk h4 a:hover {
  color: var(--thm-theme-primary);
}
.w-footer-contact-icon span {
  display: inline-block;
  width: 16px;
  font-size: 16px;
  color: var(--thm-common-black);
  margin-right: 10px;
}
.w-footer-contact-content p {
  font-size: 16px;
  line-height: 20px;
  color: var(--thm-text-2);
}
.w-footer-contact-content p a:hover {
  color: var(--thm-theme-primary);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-footer-copyright {
    margin-bottom: 15px;
  }
}
.w-footer-copyright p {
  font-size: 14px;
  color: var(--thm-text-5);
  margin-bottom: 0;
}
.w-footer-copyright p a {
  color: var(--thm-theme-primary);
}
.w-footer-payment p {
  margin-bottom: 0;
}

.w-footer-bottom-wrapper {
  padding-top: 18px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(1, 15, 28, 0.1);
}

/* footer col design for home 1 */
.footer-col-1 {
  padding-right: 95px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-col-1 {
    padding-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-col-2 {
    padding-left: 25px;
  }
}
.footer-col-3 {
  padding-left: 35px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-col-3 {
    padding-left: 0;
  }
}

/*** FOOTER STIL 2 ***********************************/
.w-footer-style-2 .w-footer-desc {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
}
.w-footer-style-2 .w-footer-social a {
  border: 1px solid #D9DBDE;
  box-shadow: none;
  border-radius: 0;
}
.w-footer-style-2 .w-footer-social a:hover {
  background-color: var(--thm-theme-secondary);
  border-color: var(--thm-theme-secondary);
}
.w-footer-style-2 .w-footer-widget-title {
  font-weight: 500;
  font-size: 23px;
  margin-bottom: 15px;
}
.w-footer-style-2 .w-footer-widget ul li a {
  font-size: 15px;
  font-weight: 400;
  color: var(--thm-text-2);
}
.w-footer-style-2 .w-footer-widget ul li a::after {
  top: 9px;
  width: 3px;
  height: 3px;
  background-color: var(--thm-text-2);
}
.w-footer-style-2 .w-footer-widget ul li a:hover {
  color: var(--thm-theme-secondary);
}
.w-footer-style-2 .w-footer-widget ul li a:hover::after {
  background-color: var(--thm-theme-secondary);
}
.w-footer-style-2 .w-footer-talk h4 {
  font-weight: 500;
  font-size: 22px;
}
.w-footer-style-2 .w-footer-talk h4 a:hover {
  color: var(--thm-theme-secondary);
}
.w-footer-style-2 .w-footer-contact-content p {
  font-size: 16px;
}
.w-footer-style-2 .w-footer-contact-content p a:hover {
  color: var(--thm-theme-secondary);
}
.w-footer-style-2 .w-footer-bottom-wrapper {
  border-color: #E4E5E8;
}
.w-footer-style-2 .w-footer-copyright p {
  margin-bottom: 0;
  font-size: 16px;
}
.w-footer-style-2 .w-footer-copyright p a {
  color: var(--thm-theme-secondary);
}
.w-footer-style-2.w-footer-style-primary .w-footer-social a {
  border: 1px solid #E6E7E8;
}
.w-footer-style-2.w-footer-style-primary .w-footer-social a:hover {
  background-color: var(--thm-theme-primary);
  border-color: var(--thm-theme-primary);
}
.w-footer-style-2.w-footer-style-primary .w-footer-widget ul li a {
  font-weight: 500;
}
.w-footer-style-2.w-footer-style-primary .w-footer-widget ul li a:hover {
  color: var(--thm-theme-primary);
}
.w-footer-style-2.w-footer-style-primary .w-footer-widget ul li a:hover::after {
  background-color: var(--thm-theme-primary);
}
.w-footer-style-2.w-footer-style-primary .w-footer-talk {
  margin-bottom: 25px;
}
.w-footer-style-2.w-footer-style-primary .w-footer-talk h4 a:hover {
  color: var(--thm-theme-primary);
}
.w-footer-style-2.w-footer-style-primary .w-footer-contact-content p a:hover {
  color: var(--thm-theme-primary);
}
.w-footer-style-2.w-footer-style-primary .w-footer-desc {
  font-size: 18px;
  margin-bottom: 21px;
  line-height: 1.44;
}
.w-footer-style-2.w-footer-style-primary .w-footer-bottom-wrapper {
  border-color: rgba(1, 15, 28, 0.1);
}
.w-footer-style-2.w-footer-style-primary .w-footer-copyright p a {
  color: var(--thm-theme-primary);
}
.w-footer-style-2.w-footer-style-6 .w-footer-widget ul li:not(:last-child) {
  margin-bottom: 9px;
}
.w-footer-style-2.w-footer-style-6 .w-footer-widget ul li a {
  font-weight: 500;
}
.w-footer-style-2.w-footer-style-6 .w-footer-desc {
  font-size: 18px;
  margin-bottom: 21px;
  line-height: 1.44;
}
.w-footer-style-2.w-footer-style-6 .w-footer-talk {
  margin-bottom: 25px;
}
.w-footer-style-2.w-footer-style-6 .w-footer-social a {
  border: 0;
  box-shadow: 0px 1px 1px rgba(1, 15, 28, 0.2);
  background-color: var(--thm-common-white);
  color: var(--thm-common-black);
}
.w-footer-style-2.w-footer-style-6 .w-footer-social a:hover {
  background-color: var(--thm-theme-primary);
  color: var(--thm-common-white);
}

/*** FOOTER STIL 3 ***********************************/
.w-footer-style-3 .w-footer-social a:hover {
  background-color: var(--thm-theme-brown);
  border-color: var(--thm-theme-brown);
}
.w-footer-style-3 .w-footer-widget-title {
  margin-bottom: 15px;
}
.w-footer-style-3 .w-footer-widget ul li a:hover {
  color: var(--thm-theme-brown);
}
.w-footer-style-3 .w-footer-widget ul li a:hover::after {
  background-color: var(--thm-theme-brown);
}
.w-footer-style-3 .w-footer-talk h4 a:hover {
  color: var(--thm-theme-brown);
}
.w-footer-style-3 .w-footer-contact-content p a:hover {
  color: var(--thm-theme-brown);
}
.w-footer-style-3 .w-footer-copyright p a {
  color: var(--thm-theme-brown);
}

/*** FOOTER STIL 4 ***********************************/
.w-footer-style-4 .w-footer-widget ul li a:hover {
  color: var(--thm-common-black);
}
.w-footer-style-4 .w-footer-widget ul li a:hover::after {
  background-color: var(--thm-common-black);
}
.w-footer-style-4 .w-footer-logo {
  margin-bottom: 13px;
}
.w-footer-style-4 .w-footer-social-4 .w-footer-social-title-4 {
  font-weight: 500;
  font-size: 16px;
  line-height: 12px;
  margin-bottom: 12px;
}
.w-footer-style-4 .w-footer-social-4 a {
  border-color: var(--thm-common-white);
  box-shadow: 0px 1px 2px rgba(1, 15, 28, 0.1);
}
.w-footer-style-4 .w-footer-social-4 a:hover {
  color: var(--thm-common-white);
  background-color: var(--thm-common-black);
  border-color: var(--thm-common-black);
  box-shadow: none;
}
.w-footer-subscribe p {
  font-size: 15px;
}
.w-footer-subscribe-input {
  position: relative;
}
.w-footer-subscribe-input input {
  height: 54px;
  background-color: var(--thm-common-white);
  border-color: var(--thm-common-white);
  box-shadow: 0px 1px 2px rgba(1, 15, 28, 0.1);
  padding-right: 130px;
}
.w-footer-subscribe-input input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #7D7F82;
}
.w-footer-subscribe-input input::-moz-placeholder { /* Firefox 19+ */
  color: #7D7F82;
}
.w-footer-subscribe-input input:-moz-placeholder { /* Firefox 4-18 */
  color: #7D7F82;
}
.w-footer-subscribe-input input:-ms-input-placeholder { /* IE 10+  Edge*/
  color: #7D7F82;
}
.w-footer-subscribe-input input::placeholder { /* MODERN BROWSER */
  color: #7D7F82;
}
.w-footer-subscribe-input input:focus {
  border-color: var(--thm-common-white);
}
.w-footer-subscribe-input button {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  color: var(--thm-common-white);
  color: var(--thm-common-white);
  background-color: var(--thm-common-black);
  box-shadow: 0px 1px 2px rgba(1, 15, 28, 0.1);
  padding: 16px 30px;
  height: 54px;
}
.w-footer-subscribe-input button:hover {
  background-color: var(--thm-theme-brown);
}

.footer-col-4-2 {
  padding-left: 23px;
}
@media (max-width: 575px) {
  .footer-col-4-2 {
    padding-left: 0;
  }
}
.footer-col-4-3 {
  padding-left: 85px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-col-4-3 {
    padding-left: 0;
  }
}
.footer-col-4-4 {
  padding-left: 48px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-col-4-4 {
    padding-left: 0;
  }
}

/*** FOOTER STIL 5 ***********************************/
.w-footer-style-5 .w-footer-social a {
  border-radius: 50%;
  color: #010F1C;
}
.w-footer-style-5 .w-footer-social a:hover {
  background-color: var(--thm-theme-green);
  border-color: var(--thm-theme-green);
  color: var(--thm-common-white);
}
.w-footer-style-5 .w-footer-widget ul li a:hover {
  color: var(--thm-theme-green);
}
.w-footer-style-5 .w-footer-widget ul li a:hover::after {
  background-color: var(--thm-theme-green);
}
.w-footer-style-5 .w-footer-talk h4 a:hover {
  color: var(--thm-theme-green);
}
.w-footer-style-5 .w-footer-contact-content p a:hover {
  color: var(--thm-theme-green);
}
.w-footer-style-5 .w-footer-copyright p a {
  color: var(--thm-theme-green);
}

/*** SLIDER CSS  ***********************************/
.w-slider-variation.is-light .w-slider-arrow button {
  color: var(--thm-common-black);
  border-color: rgba(1, 15, 28, 0.1);
}
.w-slider-btn .w-btn:hover {
  background-color: var(--thm-theme-primary) !important;
  border-color: var(--thm-theme-primary) !important;
  color: var(--thm-common-white);
}
.w-slider-variation.is-light .w-slider-dot.w-swiper-dot .swiper-pagination-bullet {
  background-color: rgba(1, 15, 28, 0.2);
}
.w-slider-dot.w-swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--thm-theme-primary) !important;
}
.w-slider-active .swiper-slide-active .w-slider-title, .w-slider-active .swiper-slide-active .w-slider-content span, .w-slider-active .swiper-slide-active .w-slider-content p, .w-slider-active .swiper-slide-active .w-slider-btn a {
  animation-name: fadeInUp;
  animation-fill-mode: both;
}
.w-slider-active .swiper-slide-active .w-slider-thumb img {
  animation-name: fadeInRight;
  animation-fill-mode: both;
}
.w-slider-active:hover .w-slider-arrow button {
  left: 40px;
  visibility: visible;
  opacity: 1;
}
.w-slider-active:hover .w-slider-arrow button.w-slider-button-next {
  right: 40px;
}
.w-slider-active .w-slider-arrow button {
  position: absolute;
  top: 50%;
  left: 0px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  color: var(--thm-common-white);
  border-color: rgba(255, 255, 255, 0.2);
  visibility: hidden;
  opacity: 0;
}
.w-slider-active .w-slider-arrow button.w-slider-button-next {
  left: auto;
  right: 0px;
}
.w-slider-active .w-slider-arrow button:hover {
  background-color: var(--thm-common-white);
  border-color: var(--thm-common-white);
  color: var(--thm-common-black);
}
.w-slider-active .w-slider-dot {
  position: absolute;
  left: 50%;
  bottom: 25px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
  width: auto;
}
.w-slider-active .w-slider-dot.w-swiper-dot .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.2);
}
.w-slider-active .w-slider-dot.w-swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--thm-common-white);
}
.w-slider-item.is-light .w-slider-title {
  color: var(--thm-heading-secondary);
}
.w-slider-item.is-light .w-slider-content > span {
  color: var(--thm-heading-secondary);
}
.w-slider-item.is-light .w-slider-content p {
  color: var(--thm-heading-secondary);
}
.w-slider-item.is-light .w-slider-content p span {
  color: var(--thm-pink-1);
}
.w-slider-title {
  font-weight: 900;
  font-size: 48px;
  line-height: 1.07;
  color: var(--thm-common-white);
  margin-bottom: 12px;
  animation-delay: 0.5s;
  animation-duration: 1s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .w-slider-title {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  .w-slider-title {
    font-size: 32px;
  }
}
.w-slider-content > span {
  display: inline-block;
  font-size: 16px;
  color: var(--thm-common-white);
  animation-delay: 0.3s;
  animation-duration: 1s;
}
.w-slider-content p {
  color: var(--thm-common-white);
  font-family: var(--thm-ff-oregano);
  font-weight: 400;
  font-size: 28px;
  margin-bottom: 40px;
  animation-delay: 0.7s;
  animation-duration: 1s;
}
.w-slider-content p span {
  display: inline-block;
  color: var(--thm-yellow-2);
  position: relative;
  z-index: 1;
}
.w-slider-content p span svg {
  position: absolute;
  bottom: -21px;
  left: -29px;
  z-index: -1;
}
.w-slider-thumb img {
  display: inline-block !important;
  animation-delay: 0.9s;
  animation-duration: 1s;
}
@media (max-width: 575px) {
  .w-slider-thumb img {
    width: 100%;
    margin-top: 50px;
  }
}
.w-slider-btn .w-btn {
  border: 1px solid var(--thm-common-white);
  animation-delay: 0.9s;
  animation-duration: 1s;
}
.w-slider-btn .w-btn:hover {
  background-color: transparent;
  color: var(--thm-common-white);
  border-color: rgba(255, 255, 255, 0.2);
}
.w-slider-height {
  min-height: 516px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-slider-height {
    min-height: 616px;
  }
}
.w-slider-shape-1 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  mix-blend-mode: luminosity;
  opacity: 0.1;
}
.w-slider-shape-2 {
  position: absolute;
  bottom: 13%;
  right: 28%;
  z-index: -1;
}
.w-slider-shape-3 {
  position: absolute;
  top: 8%;
  right: 33%;
  z-index: -1;
}
.w-slider-shape-4 {
  position: absolute;
  top: 30%;
  left: 6%;
  z-index: -1;
}

.w-slider-active-2 .swiper-slide-active .w-slider-title-2, .w-slider-active-2 .swiper-slide-active .w-slider-content-2 span, .w-slider-active-2 .swiper-slide-active .w-slider-content-2 p, .w-slider-active-2 .swiper-slide-active .w-slider-btn-2 a {
  animation-name: fadeInUp;
  animation-fill-mode: both;
}
.w-slider-active-2 .swiper-slide-active .w-slider-thumb-2 img {
  animation-name: fadeInRight;
  animation-fill-mode: both;
}
.w-slider-2-dot.w-swiper-dot {
  position: absolute;
  right: 50px;
  left: auto;
  bottom: 50%;
  z-index: 1;
  width: auto;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-slider-2-dot.w-swiper-dot {
    right: 25px;
  }
}
.w-slider-2-dot .swiper-pagination-bullet {
  background-color: rgba(1, 15, 28, 0.14);
  margin: 3px 0 !important;
}
.w-slider-2-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--thm-theme-secondary);
}
.w-slider-2-shape-1 {
  position: absolute;
  top: 0;
  right: 10%;
  z-index: -1;
  mix-blend-mode: luminosity;
}
.w-slider-title-2 {
  font-weight: 400;
  font-size: 100px;
  line-height: 1.06;
  margin-bottom: 30px;
  animation-delay: 0.3s;
  animation-duration: 1s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .w-slider-title-2 {
    font-size: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .w-slider-title-2 {
    font-size: 60px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .w-slider-title-2 {
    font-size: 85px;
  }
}
@media (max-width: 575px) {
  .w-slider-title-2 {
    font-size: 52px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-slider-content-2 {
    padding-top: 100px;
  }
}
.w-slider-content-2 span {
  font-size: 20px;
  color: var(--thm-common-black);
  display: inline-block;
  margin-bottom: 15px;
  animation-delay: 0.1s;
  animation-duration: 1s;
}
.w-slider-height-2 {
  min-height: 790px;
}
.w-slider-thumb-2-gradient {
  position: absolute;
  top: 14%;
  right: -7%;
  display: inline-block;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background-color: rgba(41, 194, 227, 0.3);
  z-index: -1;
}
.w-slider-thumb-2-shape-1 {
  position: absolute;
  top: 24%;
  left: -10px;
}
.w-slider-thumb-2-shape-2 {
  position: absolute;
  bottom: 25%;
  right: -8%;
}
@media (max-width: 575px) {
  .w-slider-thumb-2 img {
    width: 100%;
  }
}
.w-slider-btn-2 a {
  animation-delay: 0.5s;
  animation-duration: 1s;
}

.w-slider-active-3 .swiper-slide-active .w-slider-title-3, .w-slider-active-3 .swiper-slide-active .w-slider-content-3 span, .w-slider-active-3 .swiper-slide-active .w-slider-content-3 p, .w-slider-active-3 .swiper-slide-active .w-slider-btn-3 a, .w-slider-active-3 .swiper-slide-active .w-slider-feature-3 {
  animation-name: fadeInUp;
  animation-fill-mode: both;
}
.w-slider-3-dot.w-swiper-dot {
  position: absolute;
  right: 50px;
  left: auto;
  bottom: 50%;
  z-index: 1;
  width: auto;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-slider-3-dot.w-swiper-dot {
    right: 25px;
  }
}
.w-slider-3-dot .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.3);
  margin: 3px 0 !important;
}
.w-slider-3-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--thm-common-white);
}
.w-slider-title-3 {
  font-weight: 400;
  font-size: 100px;
  line-height: 1.06;
  margin-bottom: 22px;
  color: var(--thm-common-white);
  animation-delay: 0.3s;
  animation-duration: 1s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .w-slider-title-3 {
    font-size: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .w-slider-title-3 {
    font-size: 60px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .w-slider-title-3 {
    font-size: 85px;
  }
}
@media (max-width: 575px) {
  .w-slider-title-3 {
    font-size: 52px;
  }
}
.w-slider-content-3 > span {
  font-family: var(--thm-ff-charm);
  font-weight: 400;
  font-size: 30px;
  color: var(--thm-common-white);
  display: inline-block;
  animation-delay: 0.1s;
  animation-duration: 1s;
  margin-bottom: 8px;
}
.w-slider-height-3 {
  min-height: 950px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .w-slider-height-3 {
    min-height: 850px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .w-slider-height-3 {
    min-height: 750px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-slider-height-3 {
    min-height: 650px;
  }
}
.w-slider-thumb-3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.w-slider-thumb-3::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-radial-gradient(101.74% 101.74% at 68.02% 59.68%, rgba(15, 1, 5, 0) 27.48%, rgba(15, 1, 5, 0.5) 86.14%);
  background-image: -moz-radial-gradient(101.74% 101.74% at 68.02% 59.68%, rgba(15, 1, 5, 0) 27.48%, rgba(15, 1, 5, 0.5) 86.14%);
  background-image: -ms-radial-gradient(101.74% 101.74% at 68.02% 59.68%, rgba(15, 1, 5, 0) 27.48%, rgba(15, 1, 5, 0.5) 86.14%);
  background-image: -o-radial-gradient(101.74% 101.74% at 68.02% 59.68%, rgba(15, 1, 5, 0) 27.48%, rgba(15, 1, 5, 0.5) 86.14%);
  background-image: radial-gradient(101.74% 101.74% at 68.02% 59.68%, rgba(15, 1, 5, 0) 27.48%, rgba(15, 1, 5, 0.5) 86.14%);
}
.w-slider-btn-3 a {
  animation-delay: 0.7s;
  animation-duration: 1s;
}
.w-slider-feature-3 {
  animation-delay: 0.5s;
  animation-duration: 1s;
}
.w-slider-feature-item-3 {
  position: relative;
}
.w-slider-feature-item-3:not(:last-child) {
  margin-right: 28px;
  padding-right: 30px;
}
.w-slider-feature-item-3:not(:last-child)::after {
  position: absolute;
  content: "";
  right: 0;
  width: 1px;
  height: 100%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.2);
}
@media (max-width: 575px) {
  .w-slider-feature-item-3:not(:last-child)::after {
    display: none;
  }
}
.w-slider-feature-title-3 {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  color: var(--thm-common-white);
}
.w-slider-feature-icon-3 span {
  font-size: 35px;
  color: var(--thm-common-white);
  margin-right: 14px;
}
.w-slider-arrow-3 button {
  position: absolute;
  top: 50%;
  left: 50px;
  color: var(--thm-common-white);
  opacity: 0.3;
  z-index: 1;
}
.w-slider-arrow-3 button:hover {
  opacity: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .w-slider-arrow-3 button {
    left: 10px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-slider-arrow-3 button {
    left: 0;
  }
}
.w-slider-arrow-3 button.w-slider-3-button-next {
  left: auto;
  right: 50px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .w-slider-arrow-3 button.w-slider-3-button-next {
    left: auto;
    right: 10px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-slider-arrow-3 button.w-slider-3-button-next {
    left: auto;
    right: 0;
  }
}

.w-slider-active-4 .slick-slide.slick-active .w-slider-title-4, .w-slider-active-4 .slick-slide.slick-active .w-slider-content-4 span, .w-slider-active-4 .slick-slide.slick-active .w-slider-btn-4 a {
  animation-name: fadeInUp;
  animation-fill-mode: both;
}
.w-slider-active-4 .slick-slide.slick-active .w-slider-thumb-4 img {
  animation-name: fadeInRight;
  animation-fill-mode: both;
}
.w-slider-active-4 .slick-slide.slick-active .w-slider-thumb-4-shape-1, .w-slider-active-4 .slick-slide.slick-active .w-slider-thumb-4-shape-2 {
  -webkit-transform: translateX(-50%) scale(1);
  -moz-transform: translateX(-50%) scale(1);
  -ms-transform: translateX(-50%) scale(1);
  -o-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  transition-delay: 0.9s;
}
.w-slider-4-dot.w-swiper-dot {
  position: absolute;
  right: 50px;
  left: auto;
  bottom: 50%;
  z-index: 1;
  width: auto;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-slider-4-dot.w-swiper-dot {
    right: 25px;
  }
}
.w-slider-4-dot .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.3);
  margin: 3px 0 !important;
}
.w-slider-4-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--thm-common-white);
}
.w-slider-title-4 {
  font-weight: 400;
  font-size: 100px;
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin-bottom: 35px;
  color: var(--thm-common-white);
  animation-delay: 0.5s;
  animation-duration: 1s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .w-slider-title-4 {
    font-size: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .w-slider-title-4 {
    font-size: 60px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .w-slider-title-4 {
    font-size: 85px;
  }
}
@media (max-width: 575px) {
  .w-slider-title-4 {
    font-size: 52px;
  }
}
.w-slider-content-4 > span {
  font-family: var(--thm-ff-charm);
  font-weight: 400;
  font-size: 40px;
  color: var(--thm-common-white);
  display: inline-block;
  animation-delay: 0.3s;
  animation-duration: 1s;
  margin-bottom: 12px;
}
.w-slider-height-4 {
  min-height: 950px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .w-slider-height-4 {
    min-height: 850px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .w-slider-height-4 {
    min-height: 750px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-slider-height-4 {
    min-height: 650px;
  }
}
.w-slider-thumb-4 {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-40%);
  -moz-transform: translateX(-40%);
  -ms-transform: translateX(-40%);
  -o-transform: translateX(-40%);
  transform: translateX(-40%);
}
.w-slider-thumb-4 img {
  animation-delay: 0.7s;
  animation-duration: 1s;
}
.w-slider-thumb-4-shape-1, .w-slider-thumb-4-shape-2 {
  position: absolute;
  bottom: -210px;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(0);
  -moz-transform: translateX(-50%) scale(0);
  -ms-transform: translateX(-50%) scale(0);
  -o-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  display: inline-block;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.04);
  z-index: -1;
  -webkit-transition: all 0.5s 0s ease-out;
  -moz-transition: all 0.5s 0s ease-out;
  -ms-transition: all 0.5s 0s ease-out;
  -o-transition: all 0.5s 0s ease-out;
  transition: all 0.5s 0s ease-out;
}
.w-slider-thumb-4-shape-2 {
  bottom: -249px;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  left: 46%;
}
.w-slider-btn-4 a {
  padding: 10px 32px;
  animation-delay: 0.9s;
  animation-duration: 1s;
}
.w-slider-btn-4 a:hover {
  color: var(--thm-common-black);
  background-color: var(--thm-common-white);
  border-color: var(--thm-common-white);
}
.w-slider-arrow-4 {
  position: relative;
  z-index: 11;
}
.w-slider-arrow-4 button {
  width: 54px;
  height: 54px;
  line-height: 50px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0);
  position: absolute;
  bottom: 50px;
  right: 255px;
  color: rgba(255, 255, 255, 0.7);
  z-index: 1;
  border-radius: 50%;
  z-index: 11;
}
.w-slider-arrow-4 button:hover {
  border-color: var(--thm-common-white);
  color: var(--thm-common-white);
}
.w-slider-arrow-4 button.w-slider-3-button-next {
  right: 190px;
}
.w-slider-video {
  position: absolute;
  right: 5%;
  top: 27%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
}
.w-slider-video video {
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1.9);
  -moz-transform: scale(1.9);
  -ms-transform: scale(1.9);
  -o-transform: scale(1.9);
  transform: scale(1.9);
}
.w-slider-video.full-width {
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
}
.w-slider-play {
  position: absolute;
  right: 20.5%;
  top: 59%;
  z-index: 1;
}
.w-slider-play-btn {
  display: inline-block;
  width: 120px;
  height: 120px;
  line-height: 118px;
  text-align: center;
  font-size: 18px;
  color: var(--thm-common-white);
  background-color: var(--thm-theme-brown);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  bottom: -10%;
  left: -6%;
}
.w-slider-play-btn .text-shape {
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: -1;
  display: inline-block;
  -webkit-animation: w-rotate-center 10s linear infinite;
  -moz-animation: w-rotate-center 10s linear infinite;
  -ms-animation: w-rotate-center 10s linear infinite;
  -o-animation: w-rotate-center 10s linear infinite;
  animation: w-rotate-center 10s linear infinite;
  border-radius: 50%;
}
.w-slider-play-btn:hover {
  color: var(--thm-common-white);
}
.w-slider-play-btn .pause-icon {
  display: none;
}
.w-slider-play-btn .play-icon {
  -webkit-transform: translate(3px, -1px);
  -moz-transform: translate(3px, -1px);
  -ms-transform: translate(3px, -1px);
  -o-transform: translate(3px, -1px);
  transform: translate(3px, -1px);
  display: inline-block;
}
.w-slider-play-btn.hide {
  background-color: transparent;
}
.w-slider-play-btn.hide .text-shape {
  visibility: hidden;
  opacity: 0;
}
.w-slider-play-btn.hide .play-icon {
  display: none;
}
.w-slider-play-btn.hide .pause-icon {
  display: block;
}
.w-slider-nav {
  width: 150px;
  height: 180px;
}
.w-slider-nav-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100px;
  z-index: 1;
}
.w-slider-nav-item {
  margin: 6px 0;
  opacity: 0.5;
}
.w-slider-nav-item.slick-slide.slick-current.slick-active {
  opacity: 1;
}
.w-slider-nav-item:hover {
  cursor: pointer;
}
.w-slider-nav-active {
  height: 100%;
}
.w-slider-nav-icon span {
  font-size: 20px;
  margin-right: 17px;
  display: inline-block;
}
.w-slider-nav-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 0;
}

.w-slider-title-5 {
  font-weight: 500;
  font-size: 100px;
  line-height: 0.96;
  color: var(--thm-common-black);
  margin-bottom: 47px;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .w-slider-title-5 {
    font-size: 93px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .w-slider-title-5 {
    font-size: 75px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .w-slider-title-5 {
    font-size: 65px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .w-slider-title-5 {
    font-size: 60px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .w-slider-title-5 {
    font-size: 40px;
  }
}
.w-slider-content-5 {
  z-index: 111;
}
@media only screen and (min-width: 1700px) and (max-width: 1800px) {
  .w-slider-content-5 {
    margin-left: 50px;
  }
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .w-slider-content-5 {
    margin-left: 100px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .w-slider-content-5 {
    margin-left: 210px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-slider-content-5 {
    margin-top: 55px;
  }
}
.w-slider-content-5 span {
  font-size: 40px;
  color: var(--thm-theme-green);
  font-style: italic;
  display: inline-block;
  font-family: var(--thm-ff-charm);
  margin-bottom: 25px;
}
.w-slider-height-5 {
  min-height: 700px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .w-slider-height-5 {
    min-height: 500px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-slider-height-5 {
    min-height: 400px;
  }
}
.w-slider-subtitle-img {
  margin-bottom: 7px;
}
.w-slider-thumb-shape-5 .offer {
  position: absolute;
  top: 11%;
  left: 23%;
  z-index: 1;
}
@media (max-width: 575px) {
  .w-slider-thumb-shape-5 .offer {
    display: none;
  }
}
.w-slider-thumb-shape-5.one {
  position: absolute;
  top: -200px;
  left: 150px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .w-slider-thumb-shape-5.one {
    left: 450px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .w-slider-thumb-shape-5.one {
    top: -310px;
    left: 285px;
  }
}
.w-slider-thumb-5 {
  -webkit-transform: translate(-120px, -170px);
  -moz-transform: translate(-120px, -170px);
  -ms-transform: translate(-120px, -170px);
  -o-transform: translate(-120px, -170px);
  transform: translate(-120px, -170px);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .w-slider-thumb-5 {
    -webkit-transform: translate(54px, -165px);
    -moz-transform: translate(54px, -165px);
    -ms-transform: translate(54px, -165px);
    -o-transform: translate(54px, -165px);
    transform: translate(54px, -165px);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .w-slider-thumb-5 {
    margin-bottom: 55px;
    -webkit-transform: translate(66px, -223px);
    -moz-transform: translate(66px, -223px);
    -ms-transform: translate(66px, -223px);
    -o-transform: translate(66px, -223px);
    transform: translate(66px, -223px);
  }
}
@media (max-width: 575px) {
  .w-slider-thumb-5 {
    margin-top: 35px;
    -webkit-transform: translate(50px, -120px);
    -moz-transform: translate(50px, -120px);
    -ms-transform: translate(50px, -120px);
    -o-transform: translate(50px, -120px);
    transform: translate(50px, -120px);
  }
}
.w-slider-thumb-5-gradient {
  position: absolute;
  top: 0;
  left: 25%;
  display: inline-block;
  height: 548px;
  width: 548px;
  border-radius: 50%;
  background-image: -webkit-linear-gradient(169.68deg, rgba(255, 255, 255, 0.6) 6.47%, rgba(255, 255, 255, 0) 42.78%);
  background-image: -moz-linear-gradient(169.68deg, rgba(255, 255, 255, 0.6) 6.47%, rgba(255, 255, 255, 0) 42.78%);
  background-image: -ms-linear-gradient(169.68deg, rgba(255, 255, 255, 0.6) 6.47%, rgba(255, 255, 255, 0) 42.78%);
  background-image: -o-linear-gradient(169.68deg, rgba(255, 255, 255, 0.6) 6.47%, rgba(255, 255, 255, 0) 42.78%);
  background-image: linear-gradient(169.68deg, rgba(255, 255, 255, 0.6) 6.47%, rgba(255, 255, 255, 0) 42.78%);
  z-index: -1;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .w-slider-thumb-5-gradient {
    width: 450px;
    height: 450px;
  }
}
@media (max-width: 575px) {
  .w-slider-thumb-5-gradient {
    width: 280px;
    height: 280px;
  }
}
.w-slider-thumb-5 img {
  -webkit-transform: translate(-130px, 40px);
  -moz-transform: translate(-130px, 40px);
  -ms-transform: translate(-130px, 40px);
  -o-transform: translate(-130px, 40px);
  transform: translate(-130px, 40px);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-slider-thumb-5 img {
    -webkit-transform: translate(0px, 0px);
    -moz-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    -o-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    width: 100%;
  }
}
.w-slider-shape-5-1 {
  position: absolute;
  top: 14%;
  left: 15%;
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .w-slider-shape-5-1 {
    top: -2%;
    left: 8%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .w-slider-shape-5-1 {
    top: 3%;
    left: 7%;
  }
}
@media (max-width: 575px) {
  .w-slider-shape-5-1 {
    top: 55%;
  }
}
.w-slider-shape-5-2 {
  position: absolute;
  top: 14%;
  right: 7%;
  z-index: 1;
}
.w-slider-shape-5-3 {
  position: absolute;
  bottom: 15%;
  left: 33%;
  z-index: 1;
}
.w-slider-shape-5-4 {
  position: absolute;
  top: 36%;
  left: 43%;
  z-index: 1;
}
@media (max-width: 575px) {
  .w-slider-shape-5-4 {
    top: 34%;
    left: 60%;
  }
}

/*** DESPRE NOI ***********************************/
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .w-about-wrapper {
    padding-left: 35px;
    padding-top: 15px;
    padding-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-about-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 575px) {
  .w-about-wrapper {
    margin-right: 0;
    margin-top: 50px;
  }
}
.w-about-thumb-2 {
  position: absolute;
  bottom: -60px;
  right: -165px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .w-about-thumb-2 {
    right: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .w-about-thumb-2 {
    right: -30px;
  }
}
@media (max-width: 575px) {
  .w-about-thumb-2 {
    right: 0;
  }
}
@media (max-width: 575px) {
  .w-about-thumb-2 img {
    width: 70%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-about-content {
    padding-left: 0;
  }
}
.w-about-content p {
  font-size: 16px;
  line-height: 1.62;
  margin-bottom: 40px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-about-content p br {
    display: none;
  }
}
.w-about-banner-subtitle {
  font-size: 14px;
  color: var(--thm-theme-primary);
  display: inline-block;
}
.w-about-banner-title {
  font-size: 60px;
  font-weight: 500;
  line-height: 1.07;
  margin-bottom: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .w-about-banner-title {
    font-size: 45px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .w-about-banner-title {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .w-about-banner-title {
    font-size: 30px;
  }
}
.w-about-banner-thumb img {
  margin-bottom: 55px;
}
.w-about-banner-content {
  padding-left: 45px;
  padding-right: 45px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .w-about-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-about-content {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.w-about-content p {
  font-size: 16px;
  line-height: 1.56;
  margin-bottom: 25px;
}

/*** FEATURES ***********************************/
.w-feature-item {
  padding: 29px 40px 25px;
  background-color: var(--thm-grey-1);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .w-feature-item {
    padding: 29px 25px 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .w-feature-item {
    padding: 29px 19px 25px;
  }
}
.w-feature-icon span {
  display: inline-block;
  font-size: 24px;
  color: var(--thm-pink-1);
  min-width: 30px;
}
.w-feature-title {
  font-size: 16px;
  margin-bottom: 0;
}
.w-feature-content p {
  font-size: 14px;
  margin-bottom: 0;
}
.w-feature-border-radius .row [class*=col-]:first-child .w-feature-item {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.w-feature-border-radius .row [class*=col-]:last-child .w-feature-item {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.w-feature-border-2 .row [class*=col-] .w-feature-item-2 {
  position: relative;
}
@media (max-width: 575px) {
  .w-feature-border-2 .row [class*=col-] .w-feature-item-2 {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
.w-feature-border-2 .row [class*=col-] .w-feature-item-2::after {
  position: absolute;
  content: "";
  right: 14px;
  top: 42%;
  width: 1px;
  height: 50px;
  background-color: #D9DBDE;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .w-feature-border-2 .row [class*=col-] .w-feature-item-2::after {
    display: none;
  }
}
@media (max-width: 575px) {
  .w-feature-border-2 .row [class*=col-]:last-child .w-feature-item-2 {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
.w-feature-border-2 .row [class*=col-]:last-child .w-feature-item-2::after {
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-feature-border-2 .row [class*=col-]:nth-child(1) .w-feature-item-2, .w-feature-border-2 .row [class*=col-]:nth-child(2) .w-feature-item-2, .w-feature-border-2 .row [class*=col-]:nth-child(3) .w-feature-item-2 {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .w-feature-border-2 .row [class*=col-]:nth-child(1) .w-feature-item-2::after, .w-feature-border-2 .row [class*=col-]:nth-child(2) .w-feature-item-2::after, .w-feature-border-2 .row [class*=col-]:nth-child(3) .w-feature-item-2::after {
    right: auto;
    left: 0;
    top: auto;
    bottom: 0;
    width: 85%;
    height: 1px;
    display: block;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .w-feature-border-2 .row [class*=col-]:nth-child(3) .w-feature-item-2 {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .w-feature-border-2 .row [class*=col-]:nth-child(3) .w-feature-item-2::after {
    display: none;
  }
}
.w-feature-inner-2 {
  background: var(--thm-common-white);
  border: 1px solid #E9EAEC;
  padding: 30px 40px 23px;
}
.w-feature-title-2 {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--thm-common-black);
  margin-bottom: 2px;
  line-height: 1;
}
.w-feature-icon-2 span {
  font-size: 35px;
  color: var(--thm-common-black);
}
.w-feature-content-2 p {
  font-size: 14px;
  margin-bottom: 0;
  line-height: 1.3;
}

.w-feature-style-2 .w-feature-inner-2 {
  padding: 0;
  border: 0;
}
.w-feature-style-2 .w-feature-icon-2 span {
  color: var(--thm-theme-brown);
}
.w-feature-style-2 .w-feature-title-2 {
  margin-bottom: 4px;
}
.w-feature-border-3 .w-feature-item-2 {
  position: relative;
}
.w-feature-border-3 .w-feature-item-2:not(:last-child)::after {
  position: absolute;
  content: "";
  right: -42%;
  top: 42%;
  width: 1px;
  height: 50px;
  background-color: #E9EAED;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .w-feature-border-3 .w-feature-item-2:not(:last-child)::after {
    right: -20%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-feature-border-3 .w-feature-item-2:not(:last-child)::after {
    display: none;
  }
}

.w-feature-border-5 .row [class*=col-] .w-feature-item-5 {
  position: relative;
}
@media (max-width: 575px) {
  .w-feature-border-5 .row [class*=col-] .w-feature-item-5 {
    margin-bottom: 20px;
  }
}
.w-feature-border-5 .row [class*=col-] .w-feature-item-5::after {
  position: absolute;
  content: "";
  right: 14px;
  top: 42%;
  width: 1px;
  height: 50px;
  background-color: #EAEBED;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-feature-border-5 .row [class*=col-] .w-feature-item-5::after {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .w-feature-border-5 .row [class*=col-]:nth-child(1), .w-feature-border-5 .row [class*=col-]:nth-child(2) {
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .w-feature-border-5 .row [class*=col-]:last-child .w-feature-item-5 {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
.w-feature-border-5 .row [class*=col-]:last-child .w-feature-item-5::after {
  display: none;
}
.w-feature-inner-5 {
  padding: 24px 43px;
  border: 2px solid #EAEBED;
  border-radius: 16px;
}
.w-feature-title-5 {
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 0;
}
.w-feature-icon-5 span {
  font-size: 22px;
  color: var(--thm-theme-green);
  margin-right: 10px;
}

/*** ABONARE NEWSLETTER ******************************/
.w-subscribe-square .w-subscribe-input input {
  border-radius: 0;
}
.w-subscribe-square .w-subscribe-input button {
  border-radius: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-subscribe-content {
    margin-bottom: 25px;
  }
}
.w-subscribe-content span {
  font-family: var(--thm-ff-roboto);
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--thm-common-white);
}
.w-subscribe-title {
  font-family: var(--thm-ff-roboto);
  font-weight: 800;
  font-size: 40px;
  color: var(--thm-common-white);
  margin-bottom: 0;
  line-height: 1;
}
@media (max-width: 575px) {
  .w-subscribe-title {
    font-size: 37px;
  }
}
.w-subscribe-input {
  position: relative;
}
.w-subscribe-input input {
  width: 100%;
  height: 60px;
  background-color: var(--thm-common-white);
  box-shadow: 0px 1px 2px rgba(1, 15, 28, 0.1);
  border-radius: 8px;
  font-family: var(--thm-ff-roboto);
  border: 0;
  padding-right: 155px;
}
.w-subscribe-input input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-family: var(--thm-ff-roboto);
  font-size: 14px;
  color: var(--thm-text-4);
}
.w-subscribe-input input::-moz-placeholder { /* Firefox 19+ */
  font-family: var(--thm-ff-roboto);
  font-size: 14px;
  color: var(--thm-text-4);
}
.w-subscribe-input input:-moz-placeholder { /* Firefox 4-18 */
  font-family: var(--thm-ff-roboto);
  font-size: 14px;
  color: var(--thm-text-4);
}
.w-subscribe-input input:-ms-input-placeholder { /* IE 10+  Edge*/
  font-family: var(--thm-ff-roboto);
  font-size: 14px;
  color: var(--thm-text-4);
}
.w-subscribe-input input::placeholder { /* MODERN BROWSER */
  font-family: var(--thm-ff-roboto);
  font-size: 14px;
  color: var(--thm-text-4);
}
.w-subscribe-input button {
  position: absolute;
  top: 0;
  right: 0;
  font-family: var(--thm-ff-roboto);
  font-weight: 500;
  font-size: 14px;
  color: var(--thm-common-white);
  box-shadow: 0px 1px 2px rgba(1, 15, 28, 0.1);
  border-radius: 0px 8px 8px 0px;
  padding: 17px 40px;
  background-color: var(--thm-common-black);
}
@media (max-width: 575px) {
  .w-subscribe-input button {
    position: relative;
    top: 15px;
  }
}
.w-subscribe-plane {
  position: absolute;
  right: 17%;
  top: 24%;
  width: 399px;
  height: 110px;
  z-index: -2;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .w-subscribe-plane {
    right: 25%;
    top: 20%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .w-subscribe-plane {
    right: 24%;
    top: 16%;
  }
}
@media (max-width: 575px) {
  .w-subscribe-plane {
    width: 250px;
  }
}
.w-subscribe-plane-shape {
  position: absolute;
  top: -34%;
  left: -6%;
}
@media (max-width: 575px) {
  .w-subscribe-plane-shape {
    top: -70%;
  }
}
.w-subscribe-plane svg {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 575px) {
  .w-subscribe-plane svg {
    top: -38%;
    right: 20%;
  }
}
.w-subscribe-plane svg path {
  stroke-dasharray: 4;
  stroke-dashoffset: 0;
  -webkit-animation: w-svg-line 30s linear forwards infinite;
  animation: w-svg-line 30s linear forwards infinite;
}

/*** TESTIMONIALE ***********************************/
.testiPage .mItem { padding: 15px; margin: 5px 0px; transition: all 0.5s ease; }
.testiPage .mItem:hover .card { background: #fff !important; transform: translateY(-6px); box-shadow: 1px 8px 12px rgba(30,30,30,.15);
  transition: all 0.25s ease; }
.testiPage .mItem .card { background: var(--thm-grey-7) !important; border: solid 1px #999; box-shadow: none; border-radius: 10px; transition: all 0.5s ease; }
.testiPage .mItem .card-body { padding: 25px; }
.testiPage .mItem .marturie { font-size: 16px !important; font-weight: 600; line-height: 24px; margin-bottom: 15px; 
  padding: 5px 5px 10px 5px; text-align: justify; }
.testiPage .mItem .avatar { width: 70px; border-radius: 70px !important; margin-left: 30px; }
.testiPage .mItem h5 { font-size: 14px; margin-top: 15px; }


.w-testimonial-arrow button {
  position: absolute;
  top: 50%;
  left: 0;
  background: var(--thm-common-white);
  box-shadow: 0px 1px 1px rgba(1, 15, 28, 0.16);
  border-radius: 50%;
  height: 60px;
  width: 60px;
  line-height: 60px;
  font-size: 18px;
  color: var(--thm-common-black);
  z-index: 1;
}
.w-testimonial-arrow button:hover {
  background-color: var(--thm-theme-secondary);
  color: var(--thm-common-white);
  box-shadow: none;
}
.w-testimonial-arrow button.w-testimonial-slider-button-next {
  left: auto;
  right: 0;
}
.w-testimonial-section-title {
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 50px;
}
.w-testimonial-content {
  padding-left: 40px;
  padding-right: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-testimonial-content {
    padding-left: 0;
    padding-right: 0;
  }
}
.w-testimonial-content p {
  font-weight: 400;
  font-size: 30px;
  line-height: 1.4;
  color: var(--thm-common-black);
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .w-testimonial-content p {
    font-size: 27px;
  }
}
.w-testimonial-rating {
  margin-bottom: 25px;
}
.w-testimonial-rating span {
  font-size: 16px;
  color: var(--thm-theme-secondary);
}
.w-testimonial-avater img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.w-testimonial-user {
  background: var(--thm-common-white);
  box-shadow: 0px 1px 1px rgba(1, 15, 28, 0.16);
  border-radius: 40px;
  padding: 10px;
  padding-right: 27px;
}
.w-testimonial-user-translate {
  -webkit-transform: translateY(2px);
  -moz-transform: translateY(2px);
  -ms-transform: translateY(2px);
  -o-transform: translateY(2px);
  transform: translateY(2px);
}
.w-testimonial-user-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  margin-bottom: -2px;
}
.w-testimonial-user-designation {
  font-size: 14px;
  line-height: 1;
}
.w-testimonial-shape-gradient {
  position: absolute;
  top: -65px;
  left: 50%;
  display: inline-block;
  width: 432px;
  height: 432px;
  border-radius: 50%;
  background-image: -webkit-linear-gradient(180deg, rgba(9, 137, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  background-image: -moz-linear-gradient(180deg, rgba(9, 137, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  background-image: -ms-linear-gradient(180deg, rgba(9, 137, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  background-image: -o-linear-gradient(180deg, rgba(9, 137, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  background-image: linear-gradient(180deg, rgba(9, 137, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: -1;
}
@media (max-width: 575px) {
  .w-testimonial-shape-gradient {
    width: 280px;
    height: 280px;
  }
}

.w-testimonial-item-3 {
  padding: 43px 75px 52px 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .w-testimonial-item-3 {
    padding-right: 48px;
  }
}
@media (max-width: 575px) {
  .w-testimonial-item-3 {
    padding: 43px 30px 52px 35px;
  }
}
.w-testimonial-rating-3 {
  margin-bottom: 11px;
}
.w-testimonial-rating-3 span {
  color: var(--thm-common-black);
}
.w-testimonial-content-3 p {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: var(--thm-text-2);
  margin-bottom: 20px;
}
.w-testimonial-avater-3 img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #D9D9D9;
  border: 3px solid #FFFFFF;
  box-shadow: 0px 1px 2px rgba(1, 15, 28, 0.3);
}
.w-testimonial-user-3-title {
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  display: inline-block;
  margin-bottom: 0;
}
.w-testimonial-shape-3-quote {
  position: absolute;
  bottom: 50px;
  right: 50px;
  z-index: -1;
}
@media (max-width: 575px) {
  .w-testimonial-shape-3-quote {
    bottom: 83px;
    right: 30px;
  }
}

.w-testimonial-slider-wrapper-5 {
  border: 1px solid #EAEBED;
  border-radius: 30px;
  padding: 72px 115px 85px 103px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .w-testimonial-slider-wrapper-5 {
    padding: 72px 35px 85px 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .w-testimonial-slider-wrapper-5 {
    padding: 42px 50px 45px 50px;
  }
}
@media (max-width: 575px) {
  .w-testimonial-slider-wrapper-5 {
    padding: 30px 25px 30px 25px;
  }
}
.w-testimonial-content-5 {
  padding-top: 10px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-testimonial-content-5 {
    margin-top: 35px;
  }
}
.w-testimonial-content-5 p {
  font-size: 26px;
  line-height: 1.38;
  color: #010F1C;
  margin-bottom: 30px;
}
.w-testimonial-rating-5 {
  margin-bottom: 7px;
}
.w-testimonial-rating-5 span {
  font-size: 13px;
  color: #FFB21D;
}
.w-testimonial-user-5-title {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0;
}
.w-testimonial-user-5-designation {
  font-size: 16px;
}
.w-testimonial-avater-5 {
  width: 240px;
  height: 267px;
  border-radius: 50%;
  -webkit-transform: rotate(6deg);
  -moz-transform: rotate(6deg);
  -ms-transform: rotate(6deg);
  -o-transform: rotate(6deg);
  transform: rotate(6deg);
  overflow: hidden;
}
.w-testimonial-avater-5 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #D9D9D9;
  -webkit-transform: rotate(-6deg);
  -moz-transform: rotate(-6deg);
  -ms-transform: rotate(-6deg);
  -o-transform: rotate(-6deg);
  transform: rotate(-6deg);
}
.w-testimonial-avater-wrapper-5 {
  position: relative;
}
.w-testimonial-avater-wrapper-5::after {
  position: absolute;
  content: "";
  top: 13px;
  left: 15px;
  width: 240px;
  height: 267px;
  border-radius: 50%;
  -webkit-transform: rotate(6deg);
  -moz-transform: rotate(6deg);
  -ms-transform: rotate(6deg);
  -o-transform: rotate(6deg);
  transform: rotate(6deg);
  background-color: transparent;
  border: 1px solid rgba(103, 142, 97, 0.2);
  z-index: -1;
}
.w-testimonial-avater-wrapper-5 .quote-icon {
  position: absolute;
  bottom: 10px;
  right: 54px;
  display: inline-block;
  width: 70px;
  height: 70px;
  text-align: center;
  line-height: 62px;
  border: 4px solid var(--thm-common-white);
  border-radius: 50%;
  background-color: var(--thm-theme-green);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .w-testimonial-avater-wrapper-5 .quote-icon {
    bottom: 95px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .w-testimonial-avater-wrapper-5 .quote-icon {
    left: 44%;
    right: auto;
  }
}
@media (max-width: 575px) {
  .w-testimonial-avater-wrapper-5 .quote-icon {
    right: 0;
  }
}
.w-testimonial-avater-wrapper-5 .quote-icon img {
  -webkit-transform: translate(1px, -1px);
  -moz-transform: translate(1px, -1px);
  -ms-transform: translate(1px, -1px);
  -o-transform: translate(1px, -1px);
  transform: translate(1px, -1px);
}
.w-testimonial-arrow-5 {
  position: absolute;
  bottom: 30px;
  right: 0;
  z-index: 1;
}
.w-testimonial-arrow-5 button {
  font-size: 30px;
  color: #B3BAC0;
  position: relative;
}
.w-testimonial-arrow-5 button:not(:last-child) {
  margin-right: 30px;
}
.w-testimonial-arrow-5 button:not(:last-child)::after {
  position: absolute;
  content: "";
  right: -17px;
  top: 16px;
  background-color: #D6D9E0;
  width: 1px;
  height: 30px;
}
.w-testimonial-arrow-5 button:hover {
  color: var(--thm-common-black);
}

/*** PRODUCATORI ***********************************/
.w-brand-slider-active {
  padding-top: 1px;
  padding-right: 2px;
}
.w-brand-slider-arrow button {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--thm-common-white);
  box-shadow: 0px 2px 3px rgba(1, 15, 28, 0.14);
  z-index: 1;
}
@media (max-width: 575px) {
  .w-brand-slider-arrow button {
    -webkit-transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    -o-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
  }
}
.w-brand-slider-arrow button.w-brand-slider-button-next {
  left: auto;
  right: 0;
  -webkit-transform: translate(50%, -50%);
  -moz-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  -o-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}
@media (max-width: 575px) {
  .w-brand-slider-arrow button.w-brand-slider-button-next {
    -webkit-transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    -o-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
  }
}
.w-brand-slider-arrow button:hover {
  background-color: var(--thm-common-black);
  color: var(--thm-common-white);
}
.w-brand-item {
  border: 1px solid #EDEFF2;
  border-right: 0;
  background-color: var(--thm-common-white);
  min-height: 120px;
  line-height: 120px;
}
.w-brand-item a {
  display: block;
}
.w-brand-item a:hover {
  background-color: rgba(1, 15, 28, 0.02);
}
.w-brand-item img {
  opacity: 0.6;
}
.w-brand-item:hover img {
  opacity: 1;
}

/*** CALL TO ACTION ***********************************/
.w-cta-title {
  font-weight: 600;
  font-size: 54px;
  line-height: 1.19;
  color: var(--thm-common-white);
  margin-bottom: 25px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .w-cta-title {
    font-size: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .w-cta-title {
    font-size: 45px;
  }
}
@media (max-width: 575px) {
  .w-cta-title {
    font-size: 35px;
  }
}
.w-cta-wrapper {
  z-index: 3;
}
.w-cta-thumb {
  position: absolute;
  bottom: -15%;
  right: 26%;
  overflow: hidden;
  display: inline-block;
  height: 470px;
  width: 312px;
  background-color: var(--thm-grey-2);
  border: 6px solid var(--thm-common-black);
  border-radius: 30px;
  z-index: 2;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .w-cta-thumb {
    right: 14%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .w-cta-thumb {
    right: 10%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .w-cta-thumb {
    bottom: -6%;
    right: 4%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .w-cta-thumb {
    position: relative;
    right: -14%;
  }
}
@media (max-width: 575px) {
  .w-cta-thumb {
    position: relative;
    right: 8px;
  }
}
.w-cta-thumb img {
  position: absolute;
  top: -12px;
  left: 0;
}
.w-cta-thumb-gradient {
  position: absolute;
  top: 27%;
  right: 22%;
  display: inline-block;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background-color: rgba(123, 162, 117, 0.6);
  z-index: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .w-cta-thumb-gradient {
    right: 8%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .w-cta-thumb-gradient {
    right: 4%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .w-cta-thumb-gradient {
    top: 63%;
    right: 14%;
  }
}

.w-app-btn:not(:last-child) {
  margin-right: 14px;
}
.w-app-btn a {
  border-radius: 30px;
  padding: 7px 26px;
}
.w-app-btn a:hover {
  background-color: #fff;
}
.w-app-btn a:hover .app-icon span, .w-app-btn a:hover .app-content span, .w-app-btn a:hover .app-content p {
  color: var(--thm-common-black);
}
.w-app-btn .google-btn {
  background: #010F1C;
}
.w-app-btn .apple-btn {
  background: #fff;
}
.w-app-btn .apple-btn .app-icon span {
  color: var(--thm-common-black);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
.w-app-btn .apple-btn .app-content p, .w-app-btn .apple-btn .app-content span {
  color: var(--thm-common-black);
}
.w-app-btn .apple-btn:hover {
  background-color: #182416;
}
.w-app-btn .apple-btn:hover .app-icon span, .w-app-btn .apple-btn:hover .app-content span, .w-app-btn .apple-btn:hover .app-content p {
  color: var(--thm-common-white);
}
.w-app-btn .app-icon span {
  font-size: 22px;
  color: var(--thm-common-white);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
.w-app-btn .app-content {
  line-height: 1;
}
.w-app-btn .app-content span {
  font-weight: 500;
  font-size: 10px;
  line-height: 0.8;
  text-transform: uppercase;
  color: var(--thm-common-white);
  display: inline-block;
  margin-bottom: 8px;
  -webkit-transition: color 0.3s 0s ease-out;
  -moz-transition: color 0.3s 0s ease-out;
  -ms-transition: color 0.3s 0s ease-out;
  -o-transition: color 0.3s 0s ease-out;
  transition: color 0.3s 0s ease-out;
}
.w-app-btn .app-content p {
  font-weight: 500;
  font-size: 18px;
  line-height: 0.94;
  margin-bottom: 0;
  color: var(--thm-common-white);
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  -o-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-transition: color 0.3s 0s ease-out;
  -moz-transition: color 0.3s 0s ease-out;
  -ms-transition: color 0.3s 0s ease-out;
  -o-transition: color 0.3s 0s ease-out;
  transition: color 0.3s 0s ease-out;
}

/*** AUTENTIFICARE (CONTUL MEU ) ******************/
.w-login-wrapper {
  box-shadow: 0px 30px 70px rgba(1, 15, 28, 0.1);
  padding: 50px 60px 70px;
  background-color: var(--thm-common-white);
}
@media (max-width: 575px) {
  .w-login-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.w-login-title {
  font-weight: 500;
  font-size: 30px;
  margin-bottom: 4px;
}
.w-login-top p {
  font-weight: 400;
  font-size: 16px;
  color: #49535B;
}
.w-login-top p a {
  color: var(--thm-theme-primary);
  position: relative;
  display: inline-block;
}
.w-login-top p a::after {
  position: absolute;
  content: "";
  left: auto;
  right: 0;
  bottom: 4px;
  width: 0%;
  height: 1px;
  background-color: var(--thm-theme-primary);
}
.w-login-top p a:hover::after {
  left: 0;
  right: auto;
  width: 100%;
}
.w-login-option-item {
  margin-bottom: 10px;
}
.w-login-option-item:not(:last-child) {
  margin-right: 10px;
}
.w-login-option-item.has-google a {
  width: 252px;
}
.w-login-option-item.has-google a img {
  margin-right: 7px;
}
.w-login-option-item a {
  display: inline-block;
  width: 98px;
  height: 56px;
  line-height: 54px;
  text-align: center;
  border: 1px solid #E0E2E3;
  font-size: 16px;
  color: #041226;
}
.w-login-option-item a img {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}
.w-login-option-item a img.apple {
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  -o-transform: translateY(-3px);
  transform: translateY(-3px);
}
.w-login-option-item a:hover {
  border-color: var(--thm-common-black);
}
.w-login-mail {
  position: relative;
  z-index: 1;
}
.w-login-mail p {
  font-size: 15px;
  color: #55585B;
  margin-bottom: 0;
  padding: 0 20px;
  position: relative;
  display: inline-block;
  background-color: var(--thm-common-white);
}
.w-login-mail p a:hover {
  color: var(--thm-theme-primary);
}
.w-login-mail::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 12px;
  width: 100%;
  height: 1px;
  background-color: #E0E2E3;
  z-index: -1;
}
.w-login-input-wrapper {
  margin-bottom: 14px;
}
.w-login-input-box {
  position: relative;
}
.w-login-input-box:not(:last-child) {
  margin-bottom: 34px;
}
.w-login-input input {
  height: 56px;
  background: #FFFFFF;
  border: 1px solid #E0E2E3;
  font-size: 14px;
  color: var(--thm-common-black);
}
.w-login-input input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #95999D;
}
.w-login-input input::-moz-placeholder { /* Firefox 19+ */
  color: #95999D;
}
.w-login-input input:-moz-placeholder { /* Firefox 4-18 */
  color: #95999D;
}
.w-login-input input:-ms-input-placeholder { /* IE 10+  Edge*/
  color: #95999D;
}
.w-login-input input::placeholder { /* MODERN BROWSER */
  color: #95999D;
}
.w-login-input-title label {
  font-size: 14px;
  color: var(--thm-common-black);
  position: absolute;
  top: -7px;
  left: 20px;
  padding: 0 5px;
  background-color: var(--thm-common-white);
  line-height: 1;
}
.w-login-input-eye {
  position: absolute;
  right: 26px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.w-login-input-eye .open-eye {
  display: none;
}
.w-login-input-eye:hover {
  cursor: pointer;
}
.w-login-input-eye:hover span {
  color: var(--thm-common-black);
}
.w-login-remeber input {
  display: none;
}
.w-login-remeber input:checked ~ label::after {
  background-color: var(--thm-theme-primary);
  border-color: var(--thm-theme-primary);
}
.w-login-remeber input:checked ~ label::before {
  visibility: visible;
  opacity: 1;
}
.w-login-remeber label {
  font-size: 15px;
  color: #55585B;
  position: relative;
  padding-left: 26px;
  z-index: 1;
}
.w-login-remeber label::after {
  position: absolute;
  content: "";
  top: 4px;
  left: 0;
  width: 18px;
  height: 18px;
  line-height: 16px;
  text-align: center;
  border: 1px solid #C3C7C9;
  z-index: -1;
  -webkit-transition: all 0.2s 0s ease-out;
  -moz-transition: all 0.2s 0s ease-out;
  -ms-transition: all 0.2s 0s ease-out;
  -o-transition: all 0.2s 0s ease-out;
  transition: all 0.2s 0s ease-out;
}
.w-login-remeber label::before {
  position: absolute;
  content: url("../images/icons/check.svg");
  top: 4px;
  left: 0;
  width: 18px;
  height: 18px;
  line-height: 16px;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  color: var(--thm-common-white);
  -webkit-transition: all 0.2s 0s ease-out;
  -moz-transition: all 0.2s 0s ease-out;
  -ms-transition: all 0.2s 0s ease-out;
  -o-transition: all 0.2s 0s ease-out;
  transition: all 0.2s 0s ease-out;
}
.w-login-remeber label a:hover {
  color: var(--thm-theme-primary);
}
.w-login-remeber label:hover {
  cursor: pointer;
}
.w-login-forgot a {
  font-weight: 400;
  font-size: 15px;
  color: var(--thm-theme-primary);
  position: relative;
  display: inline-block;
}
.w-login-forgot a::after {
  position: absolute;
  content: "";
  left: auto;
  right: 0;
  bottom: 4px;
  width: 0%;
  height: 1px;
  background-color: var(--thm-theme-primary);
}
.w-login-forgot a:hover::after {
  left: 0;
  right: auto;
  width: 100%;
}
.w-login-btn {
  font-weight: 500;
  font-size: 16px;
  color: var(--thm-common-white);
  background-color: var(--thm-common-black);
  padding: 14px 30px;
  text-align: center;
  display: inline-block;
}
.w-login-btn:hover {
  background-color: var(--thm-theme-primary);
  color: var(--thm-common-white);
}
.w-login-shape-1, .w-login-shape-2, .w-login-shape-3, .w-login-shape-4 {
  position: absolute;
  z-index: -1;
}
.w-login-shape-1 {
  top: 7%;
  left: 18%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .w-login-shape-1 {
    left: 8%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .w-login-shape-1 {
    left: 4%;
  }
}
.w-login-shape-2 {
  bottom: 38%;
  left: 26%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .w-login-shape-2 {
    left: 15%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .w-login-shape-2 {
    left: 8%;
  }
}
.w-login-shape-3 {
  top: 7%;
  right: 22%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .w-login-shape-3 {
    right: 15%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .w-login-shape-3 {
    right: 10%;
  }
}
.w-login-shape-4 {
  bottom: 27%;
  right: 20%;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1600px) and (max-width: 1700px) {
  .w-login-shape-4 {
    right: 10%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .w-login-shape-4 {
    right: 3%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .w-login-shape-4 {
    right: -6%;
  }
}

/*** CONTACT ***********************************/
.w-contact-wrapper {
  margin-right: 73px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-contact-wrapper {
    margin-right: 0;
  }
}
.w-contact-inner {
  padding: 42px 70px 49px;
  background: var(--thm-common-white);
  box-shadow: 0px 30px 70px rgba(1, 15, 28, 0.1);
}
@media (max-width: 575px) {
  .w-contact-inner {
    padding: 20px 25px 49px;
  }
}
.w-contact-title {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 35px;
  color: var(--thm-theme-primary) !important;
}
.w-contact-input-wrapper {
  margin-bottom: 8px;
}
.w-contact-input-box {
  position: relative;
}
.w-contact-input-box:not(:last-child) {
  margin-bottom: 34px;
}
.w-contact-input input {
  height: 56px;
  background: #FFFFFF;
  border: 1px solid #E0E2E3;
  font-size: 14px;
  color: var(--thm-common-black);
}
.w-contact-input input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #95999D;
}
.w-contact-input input::-moz-placeholder { /* Firefox 19+ */
  color: #95999D;
}
.w-contact-input input:-moz-placeholder { /* Firefox 4-18 */
  color: #95999D;
}
.w-contact-input input:-ms-input-placeholder { /* IE 10+  Edge*/
  color: #95999D;
}
.w-contact-input input::placeholder { /* MODERN BROWSER */
  color: #95999D;
}
.w-contact-input textarea {
  height: 180px;
  resize: none;
}
.w-contact-input-title label {
  font-size: 14px;
  color: var(--thm-common-black);
  position: absolute;
  top: -7px;
  left: 20px;
  padding: 0 5px;
  background-color: var(--thm-common-white);
  line-height: 1;
}
.w-contact-input-eye {
  position: absolute;
  right: 26px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.w-contact-input-eye .open-eye {
  display: none;
}
.w-contact-input-eye:hover {
  cursor: pointer;
}
.w-contact-input-eye:hover span {
  color: var(--thm-common-black);
}
.w-contact-remeber input {
  display: none;
}
.w-contact-remeber input:checked ~ label::after {
  background-color: var(--thm-theme-primary);
  border-color: var(--thm-theme-primary);
}
.w-contact-remeber input:checked ~ label::before {
  visibility: visible;
  opacity: 1;
}
.w-contact-remeber label {
  font-size: 15px;
  color: #55585B;
  position: relative;
  padding-left: 26px;
  z-index: 1;
}
.w-contact-remeber label::after {
  position: absolute;
  content: "";
  top: 4px;
  left: 0;
  width: 18px;
  height: 18px;
  line-height: 16px;
  text-align: center;
  border: 1px solid #C3C7C9;
  z-index: -1;
  -webkit-transition: all 0.2s 0s ease-out;
  -moz-transition: all 0.2s 0s ease-out;
  -ms-transition: all 0.2s 0s ease-out;
  -o-transition: all 0.2s 0s ease-out;
  transition: all 0.2s 0s ease-out;
}
.w-contact-remeber label::before {
  position: absolute;
  content: url("../images/icons/check.svg");
  top: 4px;
  left: 0;
  width: 18px;
  height: 18px;
  line-height: 16px;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  color: var(--thm-common-white);
  -webkit-transition: all 0.2s 0s ease-out;
  -moz-transition: all 0.2s 0s ease-out;
  -ms-transition: all 0.2s 0s ease-out;
  -o-transition: all 0.2s 0s ease-out;
  transition: all 0.2s 0s ease-out;
}
.w-contact-remeber label a:hover {
  color: var(--thm-theme-primary);
}
.w-contact-remeber label:hover {
  cursor: pointer;
}
.w-contact-btn {
  font-size: 16px;
  color: var(--thm-common-white);
  background-color: var(--thm-common-black);
  padding: 9px 30px;
  display: inline-block;
}
.w-contact-btn:hover {
  color: var(--thm-common-white);
  background-color: var(--thm-theme-primary);
}

@media only screen and (max-width: 767px) {
  .w-contact-btn { display: block !important; } 
}

.w-contact-info-wrapper {
  margin-left: 5px;
  padding-top: 5px;
}
.w-contact-info-item:not(:last-child) {
  margin-bottom: 38px;
}
.w-contact-info-icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: end;
  justify-content: start;
  margin-bottom: 18px;
  height: 62px;
}
.w-contact-info-icon span {
  font-size: 60px;
}
.w-contact-info-content p {
  font-size: 18px;
  line-height: 1.44;
  color: var(--thm-common-black);
}
.w-contact-info-content p[data-info=mail] {
  color: #55585B;
  margin-bottom: 0;
}
.w-contact-info-content p[data-info=phone] {
  font-weight: 500;
}
.w-contact-info-content p a:hover {
  color: var(--thm-theme-primary);
}
.w-contact-social-title {
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 15px;
}
.w-contact-social-icon a {
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 36px;
  text-align: center;
  border: 1px solid #E6E7E8;
  background-color: var(--thm-common-white);
  color: var(--thm-common-black);
}
.w-contact-social-icon a:hover {
  background-color: var(--thm-theme-primary);
  border-color: var(--thm-theme-primary);
  color: var(--thm-common-white);
}

/* map css start */
.w-map-wrapper {
  position: relative;
}
.w-map-hotspot {
  position: absolute;
  top: 50%;
  left: 45%;
  z-index: 1;
}
.w-map-hotspot .w-hotspot {
  width: 30px;
  height: 30px;
  background-color: #fff;
  box-shadow: 0px 4px 10px rgba(8, 41, 72, 0.2);
  z-index: auto;
}
.w-map-hotspot .w-hotspot svg {
  -webkit-transform: translate(0px, -8px);
  -moz-transform: translate(0px, -8px);
  -ms-transform: translate(0px, -8px);
  -o-transform: translate(0px, -8px);
  transform: translate(0px, -8px);
}
.w-map-hotspot .w-hotspot::after, .w-map-hotspot .w-hotspot::before {
  border: 1px solid rgba(1, 15, 28, 0.04);
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(3px);
}
.w-map-hotspot .w-hotspot::before {
  display: none;
}
.w-map-iframe {
  width: 100%;
  height: 360px;
}
.w-map-iframe iframe {
  width: 100%;
  height: 100%;
}

.w-error-title {
  font-size: 50px;
  font-weight: 500;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .w-error-title {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .w-error-title {
    font-size: 30px;
  }
}
.w-error-content p {
  font-size: 16px;
  line-height: 1.6;
  padding: 0 70px;
  margin-bottom: 27px;
}
@media (max-width: 575px) {
  .w-error-content p {
    padding: 0;
  }
}
.w-error-btn {
  font-size: 16px;
  color: var(--thm-common-white);
  font-weight: 500;
  background-color: var(--thm-theme-primary);
  padding: 11px 30px;
}
.w-error-btn:hover {
  background-color: var(--thm-common-black);
  color: var(--thm-common-white);
}

/*** PAGINA PROFIL CONT CLIENT **********************************/
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .profile__tab {
    margin-right: 0;
    margin-bottom: 50px;
  }
}
.profile__tab .nav-tabs {
  background-color: var(--thm-common-white);
  padding: 0;
  border: 0;
  margin: 0;
  box-shadow: 0px 30px 50px rgba(5, 47, 40, 0.12);
}
.profile__tab .nav-tabs .nav-link {
  font-weight: 500;
  font-size: 15px;
  color: var(--thm-text-1);
  padding: 14px 30px;
  background-color: var(--thm-common-white);
  position: relative;
  border-radius: 0;
  text-align: left;
  border: 0;
}
.profile__tab .nav-tabs .nav-link [dir=rtl] {
  text-align: right;
}
.profile__tab .nav-tabs .nav-link span {
  margin-right: 7px;
}
.profile__tab .nav-tabs .nav-link span [dir=rtl] {
  margin-right: 0;
  margin-left: 7px;
}
.profile__tab .nav-tabs .nav-link.active {
  color: var(--thm-theme-primary);
  background-color: rgba(9, 137, 255, 0.06);
}
.profile__tab .nav-tabs .nav-link.active:hover {
  background-color: rgba(9, 137, 255, 0.06);
}
.profile__tab .nav-tabs .nav-link:hover {
  background-color: var(--thm-grey-16);
}
.profile__tab .w-tab-menu {
  position: relative;
}
.profile__tab .w-tab-line {
  position: absolute;
  content: "";
  left: 0;
  bottom: -1px;
  width: 2px;
  height: auto;
  background-color: var(--thm-theme-3);
}
.profile__tab .w-tab-line [dir=rtl] {
  left: auto;
  right: 0;
}
.profile__tab-content {
  padding: 25px 30px 30px;
  background-color: var(--thm-common-white);
  box-shadow: 0px 30px 50px rgba(5, 47, 40, 0.12);
}
.profile__info-title {
  font-size: 20px;
  margin-bottom: 25px;
}
.profile__input {
  margin-bottom: 25px;
  position: relative;
}
.profile__input-box h4 {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: var(--thm-common-black-solid);
  margin-bottom: 10px;
}
.profile__input-box h4 span {
  color: var(--thm-theme-primary);
}
.profile__input-box p {
  font-size: 13px;
  color: var(--thm-common-white);
  opacity: 0.7;
  margin-bottom: 10px;
}
.profile__input > span {
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.profile__input > span [dir=rtl] {
  left: auto;
  right: 20px;
}
.profile__input > span svg {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}
.profile__input input, .profile__input textarea {
  width: 100%;
  height: 60px;
  line-height: 60px;
  padding: 0 25px;
  padding-left: 50px;
  border: 0;
  outline: 0;
  border: 1px solid #EAEAEF;
  background-color: var(--thm-common-white);
  color: var(--thm-common-black);
}
.profile__input input [dir=rtl], .profile__input textarea [dir=rtl] {
  padding-left: 25px;
  padding-right: 50px;
}
.profile__input input:focus, .profile__input textarea:focus {
  border-color: var(--thm-theme-primary);
}
.profile__input textarea {
  line-height: 1.5;
  padding: 20px;
  resize: none;
  height: 200px;
  resize: none;
}
.profile__input .nice-select {
  width: 100%;
  float: none;
  height: 60px;
  border: 1px solid #EAEAEF;
  border-radius: 0;
  line-height: 58px;
  padding-left: 27px;
}
.profile__input .nice-select [dir=rtl] {
  padding-left: 0;
  padding-right: 27px;
}
.profile__input .nice-select .current {
  color: var(--thm-common-black);
}
.profile__input .nice-select::after {
  right: 25px;
  color: var(--thm-common-black);
}
.profile__input .nice-select::after [dir=rtl] {
  left: 25px;
  right: auto;
}
.profile__input .nice-select.open .list {
  -webkit-transform: scale(1) translateY(0px);
  -moz-transform: scale(1) translateY(0px);
  -ms-transform: scale(1) translateY(0px);
  -o-transform: scale(1) translateY(0px);
  transform: scale(1) translateY(0px);
}
.profile__input .nice-select .list {
  width: 100%;
  border-radius: 0;
  margin-top: 0;
  padding: 13px 8px;
  transform-origin: center center;
  -webkit-transform: scale(0.9) translateY(0px);
  -moz-transform: scale(0.9) translateY(0px);
  -ms-transform: scale(0.9) translateY(0px);
  -o-transform: scale(0.9) translateY(0px);
  transform: scale(0.9) translateY(0px);
  width: 100%;
}
.profile__input .nice-select .list .option:hover {
  color: var(--thm-common-black);
}
.profile__password input {
  padding: 0 20px;
}
.profile__ticket {
  border: 1px solid #EAEAEF;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .profile__ticket {
    overflow-x: scroll;
  }
}
.profile__ticket table thead tr {
  background-color: transparent;
}
.profile__ticket table th {
  color: var(--thm-common-black);
  border-color: #EAEAEF;
  box-shadow: none;
}
.profile__ticket table td {
  color: var(--thm-common-black);
}
.profile__ticket table tbody > tr:first-child {
  background-color: transparent;
}
.profile__ticket table tbody > tr:not(:last-child) {
  border-bottom: 1px solid #EAEAEF;
}
.profile__ticket table tbody > tr td, .profile__ticket table tbody > tr th {
  color: var(--thm-common-black);
  vertical-align: middle;
}
.profile__ticket table tbody > tr > th {
  padding-left: 15px;
  padding-right: 15px;
}
.profile__ticket table tbody > tr th[scope=row] {
  color: var(--thm-theme-primary);
}
.profile__ticket table tbody > tr td[data-info="status done"] {
  color: #08AF5C;
}
.profile__ticket table tbody > tr td[data-info="status pending"] {
  color: #6364DB;
}
.profile__ticket table tbody > tr td[data-info="status reply"] {
  color: #D93D1E;
}
.profile__ticket table tbody > tr td[data-info="status hold"] {
  color: #FFB422;
}
.profile__ticket table tbody > tr .w-btn {
  padding: 7px 18px;
  background-color: var(--thm-grey-1);
  color: var(--thm-common-black);
  font-weight: 500;
  min-width: 90px;
}
.profile__ticket table tbody > tr .w-btn:hover {
  color: var(--thm-common-white);
  background-color: var(--thm-theme-primary);
}
.profile__ticket .table {
  margin-bottom: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .profile__ticket .table {
    width: 700px;
  }
}
.profile__ticket .table > :not(:first-child) {
  border-color: #EAEAEF;
  border-top-width: 1px;
}
.profile__ticket .table > :not(caption) > * > * {
  padding: 1rem 1.5rem;
  border: 0;
  box-shadow: none;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .profile__address-item {
    margin-bottom: 40px;
  }
}
.profile__address-title {
  font-size: 22px;
  margin-bottom: 20px;
}
.profile__address-icon span {
  display: inline-block;
  min-width: 45px;
  margin-right: 20px;
}
.profile__address-icon span [dir=rtl] {
  margin-right: 0;
  margin-left: 20px;
}
@media (max-width: 575px) {
  .profile__address-icon span {
    margin-bottom: 20px;
  }
}
.profile__address-icon span svg {
  width: 45px;
}
.profile__address-icon span svg path {
  fill: var(--thm-theme-primary);
}
.profile__address-content p {
  font-size: 14px;
  margin-bottom: 10px;
}
.profile__address-content p span {
  color: var(--thm-common-black);
  font-weight: 500;
  margin-right: 7px;
}
.profile__address-content p span [dir=rtl] {
  margin-right: 0;
  margin-left: 7px;
}
.profile__notification-title {
  font-size: 24px;
  color: var(--thm-common-black);
  margin-bottom: 10px;
}
.profile__notification-item .form-check-input {
  margin-top: 0;
  width: 40px;
  height: 20px;
  box-shadow: none;
}
.profile__notification-item .form-check-label {
  font-size: 16px;
  color: var(--thm-common-black);
  margin-left: 10px;
}
.profile__notification-item .form-check-label [dir=rtl] {
  margin-left: 0;
  margin-right: 10px;
}
.profile__notification-item .form-check-label:hover {
  cursor: pointer;
  color: var(--thm-common-black);
}
.profile__notification-item .form-check-input:checked {
  background-color: var(--thm-theme-primary);
  border-color: var(--thm-theme-primary);
}
.profile__btn .w-btn {
  padding: 14px 39px;
}
@media (max-width: 575px) {
  .profile__main-inner {
    margin-bottom: 20px;
  }
}
.profile__main-thumb {
  position: relative;
}
.profile__main-thumb img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-right: 16px;
}
.profile__main-thumb img [dir=rtl] {
  margin-right: 0;
  margin-left: 16px;
}
@media (max-width: 575px) {
  .profile__main-thumb img {
    margin-bottom: 20px;
  }
}
.profile__main-thumb-edit input {
  display: none;
}
.profile__main-thumb-edit label {
  position: absolute;
  bottom: 8px;
  right: 8px;
  color: var(--thm-common-white);
  width: 30px;
  height: 30px;
  line-height: 24px;
  border: 2px solid var(--thm-common-white);
  text-align: center;
  background-color: var(--thm-theme-primary);
  border-radius: 50%;
}
.profile__main-thumb-edit label [dir=rtl] {
  right: 0;
  bottom: 0;
}
.profile__main-thumb-edit label i {
  margin-left: 2px;
}
.profile__main-thumb-edit label:hover {
  cursor: pointer;
  color: var(--thm-common-white);
  background-color: var(--thm-common-black);
}
.profile__main-title {
  font-size: 24px;
  margin-bottom: 0;
}
.profile__main-content p {
  font-size: 14px;
  margin-bottom: 0;
}
.profile__main-content p span {
  color: var(--thm-theme-primary);
  font-weight: 500;
}
.profile__main-info-item {
  border: 1px solid #EAEAEF;
  text-align: center;
  padding: 27px 30px 25px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .profile__main-info-item {
    margin-bottom: 25px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .profile__main-info-item {
    padding: 22px 0 20px;
  }
}
.profile__main-info-icon {
  position: relative;
  margin-bottom: 15px;
}
.profile__main-info-icon > span {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
}
.profile__main-info-icon > span svg {
  width: 60px;
}
.profile__main-info-icon > span svg path {
  fill: var(--thm-common-black);
}
.profile__main-info-icon .profile-icon-count {
  position: absolute;
  top: 2px;
  right: -8px;
  width: 25px;
  height: 25px;
  line-height: 20px;
  border: 2px solid var(--thm-common-white);
  background-color: var(--thm-theme-primary);
  color: var(--thm-common-white);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 500;
}
.profile__main-info-icon .profile-icon-count [dir=rtl] {
  right: auto;
  left: -8px;
}
.profile__main-info-title {
  font-size: 18px;
  margin-bottom: 0;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1600px) and (max-width: 1700px) {
  .profile__shape {
    display: none;
  }
}
.profile__shape-1 {
  position: absolute;
  right: -10%;
  bottom: 32%;
  z-index: -1;
}
.profile__shape-2 {
  position: absolute;
  right: -19%;
  bottom: 14%;
  z-index: -1;
}
.profile__shape-3 {
  position: absolute;
  left: -12%;
  top: 12%;
  z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .profile__shape-3 {
    left: -4%;
  }
}
.profile__shape-4 {
  position: absolute;
  left: -7%;
  bottom: 10%;
  z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .profile__shape-4 {
    left: 0%;
  }
}
.profile__shape-5 {
  position: absolute;
  right: -20%;
  top: 43%;
  z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .profile__shape-5 {
    right: 0%;
  }
}
.profile__shape-6 {
  position: absolute;
  right: -4%;
  top: 9%;
  z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .profile__shape-6 {
    right: 1%;
  }
}

.w-logout-btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--thm-common-black);
  font-family: var(--thm-ff-space);
  padding: 6px 18px;
  border: 1px solid rgba(1, 15, 28, 0.12);
  text-align: center;
}
.w-logout-btn:hover {
  background-color: var(--thm-theme-primary);
  border-color: var(--thm-theme-primary);
  color: var(--thm-common-white);
}

.w-profile-input-wrapper {
  margin-bottom: 8px;
}
.w-profile-input-box {
  position: relative;
  margin-bottom: 34px;
}
.w-profile-input input {
  height: 56px;
  background: #FFFFFF;
  border: 1px solid #E0E2E3;
  font-size: 14px;
  color: var(--thm-common-black);
}
.w-profile-input input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #95999D;
}
.w-profile-input input::-moz-placeholder { /* Firefox 19+ */
  color: #95999D;
}
.w-profile-input input:-moz-placeholder { /* Firefox 4-18 */
  color: #95999D;
}
.w-profile-input input:-ms-input-placeholder { /* IE 10+  Edge*/
  color: #95999D;
}
.w-profile-input input::placeholder { /* MODERN BROWSER */
  color: #95999D;
}
.w-profile-input textarea {
  height: 165px;
  resize: none;
}
.w-profile-input-title label {
  font-size: 14px;
  color: var(--thm-common-black);
  position: absolute;
  top: -7px;
  left: 20px;
  padding: 0 5px;
  background-color: var(--thm-common-white);
  line-height: 1;
}
.w-profile-input-eye {
  position: absolute;
  right: 26px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.w-profile-input-eye .open-eye {
  display: none;
}
.w-profile-input-eye:hover {
  cursor: pointer;
}
.w-profile-input-eye:hover span {
  color: var(--thm-common-black);
}

/*** ISTORIC ***********************************/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .w-history-wrapper {
    padding-right: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-history-wrapper {
    padding-right: 0;
    margin-bottom: 50px;
  }
}
.w-history-title {
  font-size: 44px;
  font-weight: 500;
  line-height: 1.14;
  margin-bottom: 23px;
}
.w-history-content p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 22px;
}
.w-history-year p {
  font-weight: 600;
  font-size: 100px;
  line-height: 0.8;
  letter-spacing: 0.3em;
  color: #E7E7E7;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .w-history-year p {
    font-size: 85px;
  }
}
.w-history-thumb {
  border: 4px solid #FFFFFF;
  box-shadow: 0px 1px 1px rgba(1, 15, 28, 0.2);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-history-thumb-wrapper {
    margin-left: 0;
  }
}
.w-history-thumb-text {
  position: absolute;
  left: -45px;
  bottom: 55px;
  min-width: 230px;
  background-color: var(--thm-common-white);
  box-shadow: 0px 20px 30px rgba(1, 15, 28, 0.1);
  padding: 20px 26px 22px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-history-thumb-text {
    left: 20px;
    bottom: 20px;
  }
}
.w-history-thumb-text p {
  font-size: 16px;
  color: var(--thm-common-black);
  line-height: 1.5;
  margin-bottom: 0;
  font-style: italic;
}
.w-history-nav {
  border-top: 1px solid #E4E4E4;
}
.w-history-nav-year {
  position: relative;
  padding-top: 20px;
}
.w-history-nav-year::after {
  position: absolute;
  content: "";
  left: 0;
  top: -1px;
  width: 0;
  height: 3px;
}
.w-history-nav-year p {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--thm-common-black);
}
.w-history-nav .swiper-slide-thumb-active::after {
  width: 100%;
  background-color: var(--thm-theme-primary);
}

/*** PREZENTARE ***********************************/
.w-work-section-title {
  font-weight: 500;
  font-size: 44px;
  line-height: 1.14;
}
@media (max-width: 575px) {
  .w-work-section-title {
    font-size: 35px;
  }
  .w-work-section-title br {
    display: none;
  }
}
.w-work-item {
  border: 1px solid rgba(1, 15, 28, 0.1);
  padding: 70px 55px 65px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .w-work-item {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .w-work-item {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .w-work-item {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 575px) {
  .w-work-item {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.w-work-item:hover {
  border-color: var(--thm-theme-primary);
}
.w-work-item:hover .w-work-icon span {
  color: var(--thm-theme-primary);
}
.w-work-title {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
}
.w-work-icon {
  margin-bottom: 25px;
  height: 40px;
}
.w-work-quote p {
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.43;
  text-align: center;
  color: #818487;
  margin-bottom: 0;
  position: relative;
  padding-bottom: 5px;
}
.w-work-quote p::after {
  position: absolute;
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
  width: 100px;
  height: 1px;
  background-color: #E4E6E9;
}

/*** AUTOR ***********************************/
.w-author-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  mix-blend-mode: luminosity;
}
.w-author-bg-overlay {
  position: relative;
}
.w-author-bg-overlay::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(1, 9, 17, 0.7);
  z-index: -1;
}
.w-author-wrapper {
  padding: 140px 90px 115px 102px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .w-author-wrapper {
    padding: 140px 70px 115px 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .w-author-wrapper {
    padding: 140px 90px 60px 102px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-author-wrapper {
    padding: 40px;
  }
}
.w-author-content p {
  font-size: 24px;
  line-height: 1.42;
  color: var(--thm-common-white);
}
.w-author-info-wrapper {
  padding: 10px;
  border-radius: 40px;
  background-color: var(--thm-common-white);
  min-width: 210px;
  width: max-content;
}
div.w-author-info-avater img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.w-author-info-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1;
}
.w-author-info-designation {
  font-size: 14px;
  color: #55585B;
}
.w-author-brand-wrapper {
  width: 340px;
  margin-left: auto;
  position: relative;
  margin-right: 75px;
  margin-top: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-author-brand-wrapper {
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 70px;
  }
}
@media (max-width: 575px) {
  .w-author-brand-wrapper {
    width: 280px;
  }
}
.w-author-brand-wrapper::after, .w-author-brand-wrapper::before {
  position: absolute;
  content: "";
  background-color: rgba(255, 255, 255, 0.2);
}
.w-author-brand-wrapper::after {
  top: 44%;
  left: 0;
  width: 100%;
  height: 1px;
}
.w-author-brand-wrapper::before {
  left: 50%;
  top: 0;
  width: 1px;
  height: calc(100% - 20px);
}
.w-author-brand-item {
  flex: 0 0 auto;
  width: 50%;
  padding-top: 18px;
  margin-bottom: 40px;
}
.w-author-shape-1 {
  position: absolute;
  top: 50px;
  left: -20px;
  display: inline-block;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-image: -webkit-linear-gradient(180deg, rgba(9, 137, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
  background-image: -moz-linear-gradient(180deg, rgba(9, 137, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
  background-image: -ms-linear-gradient(180deg, rgba(9, 137, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
  background-image: -o-linear-gradient(180deg, rgba(9, 137, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
  background-image: linear-gradient(180deg, rgba(9, 137, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
}

/*** COSUL MEU MAGAZIN ***********************************/
.w-product-quantity-product-quantity {
  width: 148px;
  position: relative;
}
.w-product-quantity-cart-plus, .w-product-quantity-cart-minus {
  width: 45px;
  height: 44px;
  line-height: 44px;
  display: inline-block;
  text-align: center;
  font-size: 16px;
  color: var(--thm-common-black);
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.w-product-quantity-cart-plus::after, .w-product-quantity-cart-minus::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 26px;
  top: 50%;
  right: 0;
  background-color: #DADCE0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.w-product-quantity-cart-plus svg, .w-product-quantity-cart-minus svg {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}
.w-product-quantity-cart-plus:hover, .w-product-quantity-cart-minus:hover {
  cursor: pointer;
  color: var(--thm-theme-primary);
}
.w-product-quantity-cart-plus.w-product-quantity-cart-plus, .w-product-quantity-cart-minus.w-product-quantity-cart-plus {
  left: auto;
  right: 0;
}
.w-product-quantity-cart-plus.w-product-quantity-cart-plus::after, .w-product-quantity-cart-minus.w-product-quantity-cart-plus::after {
  left: 0;
  right: auto;
}
.w-product-quantity-cart-input[type=text] {
  width: 100%;
  height: 44px;
  text-align: center;
  font-size: 14px;
  border: 1px solid #DADCE0;
  background-color: var(--thm-common-white);
  padding: 0 45px;
}
.w-product-quantity-cart-input[type=text] [dir=rtl] {
  text-align: center;
}
.w-product-quantity-cart-input[type=text]:focus {
  outline: none;
}

/*** COSUL MEU MINISLIDE *************************************************/
.cartmini__style-darkRed .cartmini__shipping .progress-bar {
  background-color: var(--thm-theme-secondary);
}
.cartmini__style-darkRed .cartmini__price {
  color: var(--thm-theme-secondary);
}
.cartmini__style-darkRed .cartmini__checkout-btn .w-btn:hover {
  background-color: var(--thm-theme-secondary);
  border-color: var(--thm-theme-secondary);
}
.cartmini__style-darkRed .cartmini__del:hover, .cartmini__style-darkRed .cartmini__title a:hover {
  color: var(--thm-theme-secondary);
}
.cartmini__style-brown .cartmini__shipping .progress-bar {
  background-color: var(--thm-theme-brown);
}
.cartmini__style-brown .cartmini__price {
  color: var(--thm-theme-brown);
}
.cartmini__style-brown .cartmini__checkout-btn .w-btn:hover {
  background-color: var(--thm-theme-brown);
  border-color: var(--thm-theme-brown);
}
.cartmini__style-brown .cartmini__del:hover, .cartmini__style-brown .cartmini__title a:hover {
  color: var(--thm-theme-brown);
}
.cartmini__style-green .cartmini__shipping .progress-bar {
  background-color: var(--thm-theme-green);
}
.cartmini__style-green .cartmini__price {
  color: var(--thm-theme-green);
}
.cartmini__style-green .cartmini__checkout-btn .w-btn:hover {
  background-color: var(--thm-theme-green);
  border-color: var(--thm-theme-green);
}
.cartmini__style-green .cartmini__del:hover, .cartmini__style-green .cartmini__title a:hover {
  color: var(--thm-theme-green);
}
.cartmini__area {
  position: fixed;
  right: 0;
  top: 0;
  width: 320px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  background: var(--thm-common-white) none repeat scroll 0 0;
  -webkit-transition: 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -ms-transition: 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -o-transition: 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 9999;
  scrollbar-width: none;
}
.cartmini__area::-webkit-scrollbar {
  display: none;
}
.cartmini__area.cartmini-opened {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.cartmini__wrapper {
  position: relative;
  min-height: 100%;
  padding-left: 25px;
  padding-right: 25px;
}
.cartmini__top-title {
  padding: 20px 0;
  border-bottom: 1px solid var(--thm-border-primary);
}
.cartmini__top-title h4 {
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 0;
}
.cartmini__close {
  position: absolute;
  top: 17px;
  right: 0;
}
.cartmini__close-btn {
  background: transparent;
  color: var(--thm-common-black);
  font-size: 22px;
}
.cartmini__close-btn:hover {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.cartmini__shipping {
  padding: 15px 0;
  border-bottom: 1px solid var(--thm-border-primary);
}
.cartmini__shipping .progress {
  height: 10px;
  border-radius: 0;
}
.cartmini__shipping .progress-bar {
  background-color: var(--thm-theme-primary);
}
.cartmini__shipping p {
  margin-bottom: 5px;
}
.cartmini__shipping p span {
  color: var(--thm-pink-1);
  font-weight: 600;
}
.cartmini__widget {
  height: calc(100vh - 380px);
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
.cartmini__widget::-webkit-scrollbar {
  display: none;
}
.cartmini__widget-item {
  position: relative;
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid rgba(129, 129, 129, 0.2);
}
.cartmini__widget-item:last-child {
  border-bottom: 0;
}
.cartmini__thumb {
  border: none;
  margin-right: 15px;
}
.cartmini__thumb img {
  width: 70px;
  height: auto;
}
.cartmini__title {
  font-size: 15px;
  margin-bottom: 4px;
  font-weight: 500;
}
.cartmini__title a:hover {
  color: var(--thm-theme-primary);
}
.cartmini__content {
  padding-right: 15px;
}
.cartmini__content .w-product-quantity {
  width: 75px;
  padding: 0;
}
.cartmini__content .w-product-quantity .w-cart-input[type=text] {
  height: 30px;
  text-align: center;
  font-size: 13px;
  border: 1px solid var(--thm-border-primary);
  background-color: var(--thm-common-white);
  padding: 0;
}
.cartmini__content .w-product-quantity .w-cart-plus,
.cartmini__content .w-product-quantity .w-cart-minus {
  width: 20px;
  height: 30px;
  line-height: 30px;
  display: inline-block;
  text-align: center;
  font-size: 13px;
  left: 3px;
}
.cartmini__content .w-product-quantity .w-cart-plus svg,
.cartmini__content .w-product-quantity .w-cart-minus svg {
  -webkit-transform: translateY(-1px);
  -moz-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  -o-transform: translateY(-1px);
  transform: translateY(-1px);
  width: 10px;
}
.cartmini__content .w-product-quantity .w-cart-plus::after,
.cartmini__content .w-product-quantity .w-cart-minus::after {
  display: none;
}
.cartmini__content .w-product-quantity .w-cart-plus {
  left: auto;
  right: 3px;
}
.cartmini__del {
  position: absolute;
  top: 15px;
  right: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  color: var(--thm-common-black);
  font-size: 14px;
}
.cartmini__del:hover {
  color: var(--thm-theme-primary);
}
.cartmini__checkout {
  padding-top: 15px;
  padding-bottom: 85px;
  width: 100%;
  background: var(--thm-common-white);
  border-top: 2px solid var(--thm-border-primary);
}
.cartmini__checkout-title h4 {
  font-size: 15px;
  display: inline-block;
  font-weight: 500;
  margin-bottom: 0;
  text-transform: capitalize;
}
.cartmini__checkout-title span {
  float: right;
  font-size: 15px;
  color: var(--thm-common-black);
  font-weight: 500;
}
.cartmini__checkout-btn .w-btn {
  font-size: 15px;
  text-transform: capitalize;
  padding: 10px 30px;
  text-align: center;
}
.cartmini__checkout-btn .w-btn:hover {
  background-color: var(--thm-theme-primary);
  color: var(--thm-common-white);
  border-color: var(--thm-theme-primary);
}
.cartmini__checkout-btn .w-btn-border:hover {
  background-color: var(--thm-theme-primary);
  color: var(--thm-common-white);
  border-color: var(--thm-theme-primary);
}
.cartmini__price {
  font-size: 14px;
  font-weight: 500;
  color: var(--thm-theme-primary);
}
.cartmini__quantity {
  font-size: 12px;
  font-weight: 500;
}
.cartmini__empty {
  margin-top: 150px;
}
.cartmini__empty img {
  margin-bottom: 30px;
}
.cartmini__empty p {
  font-size: 16px;
  color: var(--thm-common-black);
  margin-bottom: 15px;
}
.cartmini__empty .w-btn {
  background-color: var(--thm-grey-1);
  font-size: 15px;
  text-transform: capitalize;
  color: var(--thm-common-black);
  padding: 10px 30px;
  text-align: center;
}
.cartmini__empty .w-btn:hover {
  background-color: var(--thm-common-black);
  color: var(--thm-common-white);
}

/*** CATEGORII PRODUSE LISTARE ***************************/
.w-product-category-item .w-product-category-thumb img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  min-width: 100%;
  min-height: 100%;
}

.w-product-category-item:hover .w-product-category-thumb img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.w-product-category-thumb {
  margin-bottom: 15px;
}
.w-product-category-thumb a {
  display: inline-block;
  width: 180px;
  height: 180px;
  background-color: var(--thm-grey-1);
  background-image: radial-gradient(95.56% 95.56% at 50% 50%, #8a7144 0%, #8a7144 100%);
  border-radius: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  overflow: hidden !important;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .w-product-category-thumb a {
    width: 150px;
    height: 150px;
  }
}
.w-product-category-content p {
  font-weight: 400;
  font-size: 14px;
  color: var(--thm-text-2);
}
.w-product-category-title {
  font-weight: 500;
  font-size: 20px;
  color: var(--thm-common-black);
  margin-bottom: 0;
}
.w-product-category-title a:hover {
  color: var(--thm-theme-primary);
}

.w-category-slider-2 .w-swiper-scrollbar {
  width: calc(100% - 200px);
  margin: auto;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .w-category-slider-2 .w-swiper-scrollbar {
    width: calc(100% - 100px);
  }
}
@media (max-width: 575px) {
  .w-category-slider-2 .w-swiper-scrollbar {
    width: 100%;
  }
}
.w-category-item-2:hover .w-category-title-2, .w-category-item-2:hover .w-category-btn-2, .w-category-item-2:hover .w-category-content-2 span, .w-category-item-2:hover .w-category-content-2::after {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}
.w-category-item-2:hover .w-category-title-2 {
  transition-delay: 0.5s;
}
.w-category-item-2:hover .w-category-btn-2 {
  transition-delay: 0.7s;
}
.w-category-item-2:hover .w-category-content-2 span {
  transition-delay: 0.3s;
}
.w-category-item-2:hover .w-category-content-2::after {
  transition-delay: 0.1s;
}
.w-category-title-2, .w-category-btn-2, .w-category-content-2 span, .w-category-content-2::after {
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
  visibility: hidden;
  opacity: 0;
}
.w-category-content-2 {
  position: absolute;
  top: 14px;
  left: 14px;
  bottom: 14px;
  right: 14px;
  background-color: transparent;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.w-category-content-2::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--thm-common-white);
  z-index: -1;
  transition-delay: 0.7s;
}
.w-category-content-2 span {
  font-size: 16px;
  display: inline-block;
  margin-bottom: 3px;
  transition-delay: 0.5s;
}
.w-category-title-2 {
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 17px;
  transition-delay: 0.3s;
}
.w-category-title-2 a:hover {
  color: var(--thm-theme-secondary);
}
.w-category-btn-2 {
  transition-delay: 0s;
}
.w-category-btn-2 .w-btn-border {
  font-size: 14px;
  padding: 1px 15px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-category-thumb-2 img {
    width: 100%;
  }
}

.w-category-item-3 {
  min-height: 520px;
}
.w-category-item-3:hover .w-category-content-3 {
  bottom: 35px;
}
.w-category-item-3:hover .w-category-btn-3 {
  visibility: visible;
  opacity: 1;
}
.w-category-item-3:hover .w-category-thumb-3 {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.w-category-item-3:hover .w-category-thumb-3::after {
  opacity: 0;
  visibility: hidden;
}
.w-category-item-3:hover .w-category-thumb-3::before {
  visibility: visible;
  opacity: 1;
}
.w-category-thumb-3 {
  z-index: -1;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
.w-category-thumb-3::after, .w-category-thumb-3::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-linear-gradient(180deg, rgba(1, 15, 28, 0) 0%, rgba(1, 15, 28, 0.5) 100%);
  background-image: -moz-linear-gradient(180deg, rgba(1, 15, 28, 0) 0%, rgba(1, 15, 28, 0.5) 100%);
  background-image: -ms-linear-gradient(180deg, rgba(1, 15, 28, 0) 0%, rgba(1, 15, 28, 0.5) 100%);
  background-image: -o-linear-gradient(180deg, rgba(1, 15, 28, 0) 0%, rgba(1, 15, 28, 0.5) 100%);
  background-image: linear-gradient(180deg, rgba(1, 15, 28, 0) 0%, rgba(1, 15, 28, 0.5) 100%);
}
.w-category-thumb-3::before {
  background: none;
  background: rgba(1, 15, 28, 0.5);
  opacity: 0;
  visibility: hidden;
}
.w-category-title-3 {
  font-weight: 600;
  font-size: 24px;
  color: var(--thm-common-white);
  margin-bottom: 0;
}
.w-category-title-3 a {
  background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 88%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}
.w-category-title-3 a:hover {
  background-size: 0 1px, 100% 1px;
}
.w-category-content-3 {
  position: absolute;
  bottom: -18px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1;
}
.w-category-content-3 span {
  font-weight: 500;
  font-size: 14px;
  color: var(--thm-common-white);
  display: inline-block;
  margin-bottom: 22px;
}
.w-category-btn-3 {
  visibility: hidden;
  opacity: 0;
}
.w-category-btn-3 .w-link-btn-2 {
  color: var(--thm-common-white);
}
.w-category-btn-3 .w-link-btn-2::after, .w-category-btn-3 .w-link-btn-2::before {
  background-color: var(--thm-common-white);
}
.w-category-more-3 .w-btn {
  font-size: 14px;
  color: var(--thm-common-black);
  border-color: rgba(1, 15, 28, 0.12);
  background-color: transparent;
}
.w-category-more-3 .w-btn:hover {
  background-color: var(--thm-theme-brown);
  border-color: var(--thm-theme-brown);
  color: var(--thm-common-white);
}

.w-category-slider-4 .w-swiper-scrollbar {
  background-color: #D3D8DD;
  width: calc(100% - 1120px);
  margin: auto;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .w-category-slider-4 .w-swiper-scrollbar {
    width: calc(100% - 600px);
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .w-category-slider-4 .w-swiper-scrollbar {
    width: calc(100% - 400px);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .w-category-slider-4 .w-swiper-scrollbar {
    width: calc(100% - 200px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .w-category-slider-4 .w-swiper-scrollbar {
    width: calc(100% - 150px);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-category-slider-4 .w-swiper-scrollbar {
    width: 100%;
  }
}
.w-category-item-4 {
  min-height: 360px;
}
.w-category-item-4:hover .w-category-price-4 {
  visibility: hidden;
  opacity: 0;
}
.w-category-item-4:hover .w-category-add-to-cart-4 {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(-30px) translateX(-50%);
  -moz-transform: translateY(-30px) translateX(-50%);
  -ms-transform: translateY(-30px) translateX(-50%);
  -o-transform: translateY(-30px) translateX(-50%);
  transform: translateY(-30px) translateX(-50%);
}
.w-category-item-4:hover .w-product-action-4 {
  visibility: visible;
  opacity: 1;
  right: 20px;
}
.w-category-title-4 {
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 3px;
}
.w-category-title-4 a:hover {
  color: var(--thm-theme-brown);
}
.w-category-thumb-4 {
  z-index: -1;
}
.w-category-content-4 {
  position: absolute;
  bottom: 35px;
  left: 20px;
  right: 20px;
}
.w-category-price-4 {
  font-weight: 500;
  font-size: 16px;
  color: var(--thm-common-black);
  display: inline-block;
}
.w-category-price-wrapper-4 {
  position: relative;
}
.w-category-add-to-cart-4 {
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin: auto;
  background-color: var(--thm-common-white);
  font-weight: 500;
  font-size: 16px;
  color: var(--thm-common-black);
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(-20px) translateX(-50%);
  -moz-transform: translateY(-20px) translateX(-50%);
  -ms-transform: translateY(-20px) translateX(-50%);
  -o-transform: translateY(-20px) translateX(-50%);
  transform: translateY(-20px) translateX(-50%);
}
.w-category-add-to-cart-4:hover {
  color: var(--thm-theme-brown);
}

.w-category-slider-5 .w-swiper-scrollbar {
  background-color: #EDEFF2;
  width: calc(100% - 600px);
  margin: auto;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .w-category-slider-5 .w-swiper-scrollbar {
    width: calc(100% - 400px);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .w-category-slider-5 .w-swiper-scrollbar {
    width: calc(100% - 200px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .w-category-slider-5 .w-swiper-scrollbar {
    width: calc(100% - 150px);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-category-slider-5 .w-swiper-scrollbar {
    width: 100%;
  }
}
.w-category-item-5 {
  background-color: #E5EFE2;
  min-height: 260px;
  border-radius: 16px;
}
.w-category-item-5:hover .w-category-thumb-5 {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
.w-category-title-5 {
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 0;
}
.w-category-title-5:hover {
  color: var(--thm-theme-green);
}
.w-category-thumb-5 {
  z-index: -1;
}
.w-category-content-5 {
  position: absolute;
  top: 35px;
  left: 10px;
  right: 10px;
  text-align: center;
}
.w-category-content-5 span {
  font-size: 14px;
  color: #5C8C10;
}
.w-category-main-box {
  height: 420px;
}
.w-category-main-box:hover .w-category-main-thumb {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.w-category-main-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.w-category-main-title {
  font-weight: 600;
  font-size: 24px;
  color: var(--thm-common-black);
  line-height: 1;
  margin-bottom: 0;
}
.w-category-main-title a:hover {
  color: var(--thm-theme-primary);
}
.w-category-main-content {
  position: absolute;
  bottom: 30px;
  left: 20px;
  right: 20px;
  z-index: 1;
  text-align: center;
}
.w-category-main-item {
  font-weight: 500;
  font-size: 14px;
  color: var(--thm-text-2);
}
.w-category-main-result p {
  font-weight: 400;
  font-size: 16px;
  color: #818487;
  margin-bottom: 10px;
}
.w-category-main-result-bar {
  max-width: 588px;
  height: 2px;
  background-color: #EDEFF2;
  margin: auto;
  position: relative;
}
.w-category-main-result-bar span {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 1;
  background-color: var(--thm-common-black);
}

/*** SECTIUNE BANERE *******************************/
.w-banner-item {
  padding: 52px 60px 32px;
  border-radius: 8px;
}
@media (max-width: 575px) {
  .w-banner-item {
    padding: 52px 34px 32px;
  }
}
.w-banner-item:hover .w-banner-thumb {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
.w-banner-item.has-square {
  border-radius: 0;
}
.w-banner-item.has-square .w-banner-thumb {
  border-radius: 0;
}
.w-banner-item-sm {
  padding: 50px 40px;
}
.w-banner-item-sm .w-banner-title {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 5px;
}
.w-banner-item-sm .w-banner-title a:hover {
  color: var(--thm-common-black);
}
.w-banner-item-sm .w-banner-content p {
  margin-bottom: 31px;
}
.w-banner-item-sm .w-banner-btn .w-link-btn:hover {
  color: var(--thm-common-black);
}
.w-banner-content span {
  font-size: 16px;
  color: var(--thm-common-black);
  display: inline-block;
  margin-bottom: 5px;
}
.w-banner-content p {
  font-weight: 500;
  font-size: 16px;
  color: var(--thm-common-black);
}
.w-banner-title {
  font-weight: 500;
  font-size: 28px;
  line-height: 1.29;
  margin-bottom: 22px;
}
.w-banner-title a:hover {
  color: var(--thm-theme-primary);
}
.w-banner-thumb {
  border-radius: 8px;
  z-index: -1;
}
.w-banner-height {
  min-height: 260px;
}

.w-product-banner-slider {
  border-radius: 8px;
}
.w-product-banner-slider-active .swiper-slide-active .w-product-banner-title, .w-product-banner-slider-active .swiper-slide-active .w-product-banner-subtitle, .w-product-banner-slider-active .swiper-slide-active .w-product-banner-content p, .w-product-banner-slider-active .swiper-slide-active .w-product-banner-price, .w-product-banner-slider-active .swiper-slide-active .w-product-banner-btn a {
  animation-name: fadeInUp;
  animation-fill-mode: both;
}
.w-product-banner-slider-active .swiper-slide-active .w-product-banner-thumb img {
  animation-name: fadeInRight;
  animation-fill-mode: both;
}
.w-product-banner-slider-active .swiper-slide-active .w-product-banner-thumb-gradient {
  animation-name: fadeInRight;
  animation-fill-mode: both;
}
.w-product-banner-slider-active .swiper-slide-active .w-product-banner-thumb-shape .w-offer-shape {
  animation-name: fadeInRight;
  animation-fill-mode: both;
}
.w-product-banner-slider-dot.w-swiper-dot {
  position: absolute;
  right: 50px;
  left: auto;
  bottom: 50%;
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
  transform: translateY(50%);
  z-index: 1;
  width: auto;
  display: flex;
  flex-direction: column;
}
.w-product-banner-slider-dot.w-swiper-dot.w-swiper-dot .swiper-pagination-bullet {
  margin: 3px 0;
  background-color: rgba(255, 255, 255, 0.2);
}
.w-product-banner-slider-dot.w-swiper-dot.w-swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--thm-common-white);
}
.w-product-banner-inner {
  border-radius: 8px;
  padding: 64px 80px 69px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .w-product-banner-inner {
    padding: 64px 50px 69px;
  }
}
@media (max-width: 575px) {
  .w-product-banner-inner {
    padding: 34px 20px 69px;
  }
}
.w-product-banner-bg-text {
  position: absolute;
  bottom: -10%;
  left: 0;
  right: 0;
  text-align: center;
  margin: auto;
  font-weight: 900;
  font-size: 340px;
  text-transform: uppercase;
  color: var(--thm-common-white);
  opacity: 0.04;
  margin-bottom: 0;
  line-height: 0.7;
  z-index: -1;
}
.w-product-banner-subtitle {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  animation-delay: 0.3s;
  animation-duration: 1s;
  display: inline-block;
}
.w-product-banner-title {
  font-weight: 800;
  font-size: 54px;
  line-height: 1.15;
  margin-bottom: 22px;
  color: var(--thm-common-white);
  margin-bottom: 10px;
  animation-delay: 0.5s;
  animation-duration: 1s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .w-product-banner-title {
    font-size: 45px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-product-banner-title {
    font-size: 35px;
  }
}
.w-product-banner-title a:hover { color: var(--thm-theme-primary); }
.w-product-banner-price { animation-delay: 0.7s; animation-duration: 1s; }
.w-product-banner-price span, .w-product-banner-price p { font-weight: 500; }
.w-product-banner-price .price { font-size: 40px; line-height: 1; letter-spacing: -0.04em; }
.w-product-banner-price .old-price { font-size: 14px; line-height: 20px; letter-spacing: -0.02em; 
  text-decoration-line: line-through; color: rgba(255, 255, 255, 0.7); }
.w-product-banner-price .new-price { font-size: 40px; line-height: 30px; letter-spacing: -0.04em; color: var(--thm-common-white); }
@media (max-width: 575px) { .w-product-banner-price .new-price { font-size: 35px; } }
.w-product-banner-btn .w-btn { animation-delay: 0.9s; animation-duration: 1s; background-color: var(--thm-common-black);
  padding: 10px 41px 8px; }
.w-product-banner-btn .w-btn:hover { background-color: var(--thm-common-white); color: var(--thm-common-black); }
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-product-banner-thumb-wrapper { margin-top: 50px; } }
.w-product-banner-thumb-gradient { position: absolute; top: -6%; left: 0%; width: 400px; height: 400px; display: inline-block;
  background-image: -webkit-radial-gradient(50% 50% at 50% 50%, rgba(171, 215, 255, 0.25) 0%, rgba(3, 76, 219, 0.35) 100%);
  background-image: -moz-radial-gradient(50% 50% at 50% 50%, rgba(171, 215, 255, 0.25) 0%, rgba(3, 76, 219, 0.35) 100%);
  background-image: -ms-radial-gradient(50% 50% at 50% 50%, rgba(171, 215, 255, 0.25) 0%, rgba(3, 76, 219, 0.35) 100%);
  background-image: -o-radial-gradient(50% 50% at 50% 50%, rgba(171, 215, 255, 0.25) 0%, rgba(3, 76, 219, 0.35) 100%);
  background-image: radial-gradient(50% 50% at 50% 50%, rgba(171, 215, 255, 0.25) 0%, rgba(3, 76, 219, 0.35) 100%);
  border-radius: 50%; animation-delay: 1.3s; animation-duration: 1s; }
.w-product-banner-thumb-shape .w-offer-shape { position: absolute; top: -8%; left: 30%; z-index: 11; animation-delay: 1.1s;
  animation-duration: 1s; }
.w-product-banner-thumb img { animation-delay: 1.1s; animation-duration: 1s; }
@media (max-width: 575px) { .w-product-banner-thumb img {  width: 100%; }}
.w-banner-item-2 { min-height: 280px; padding: 65px 48px 55px;}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .w-banner-item-2 { padding: 65px 25px 55px;}}
@media (max-width: 575px) {
  .w-banner-item-2 { min-height: 250px; padding: 49px 29px 45px; }}
.w-banner-item-2:hover .w-banner-thumb-2 { -webkit-transform: scale(1.1); -moz-transform: scale(1.1);
  -ms-transform: scale(1.1); -o-transform: scale(1.1); transform: scale(1.1); }
.w-banner-thumb-2 { z-index: -1;}
@media (max-width: 575px) {
  .w-banner-thumb-2 { background-position: center left; } }
.w-banner-title-2 { font-weight: 400; font-size: 36px; line-height: 1.17; margin-bottom: 20px; }
.w-banner-title-2 a:hover { color: var(--thm-theme-secondary);}
.w-banner-item-4:hover .w-banner-thumb-4 { -webkit-transform: scale(1.1); -moz-transform: scale(1.1);
  -ms-transform: scale(1.1); -o-transform: scale(1.1); transform: scale(1.1); }
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-banner-item-4.sm-banner { margin-bottom: 24px; } }
.w-banner-item-4.sm-banner .w-banner-content-4 { top: 30px; }
.w-banner-item-4.has-green .w-banner-content-4 span { color: #72AD3E; }
.w-banner-item-4.has-brown .w-banner-content-4 span { color: var(--thm-theme-brown); margin-bottom: 0; }
.w-banner-height-4 { min-height: 288px; }
.w-banner-title-4 { font-weight: 400; font-size: 30px; line-height: 1.2; margin-bottom: 20px; }
@media (max-width: 575px) {
  .w-banner-title-4 { font-size: 25px; }
}
.w-banner-thumb-4 { z-index: -1; }
.w-banner-content-4 { position: absolute; top: 52px; left: 38px; right: 38px; }
@media (max-width: 575px) {
  .w-banner-content-4 { top: 30px; left: 20px; right: 20px; }
}
.w-banner-content-4 span {font-size: 16px; color: #2061E3; display: inline-block; margin-bottom: 2px; }
.w-banner-btn-4 .w-btn { border-color: rgba(1, 15, 28, 0.1); padding: 4px 21px; }
.w-banner-btn-4 .w-btn:hover { background-color: var(--thm-common-black); border-color: var(--thm-common-black);
  color: var(--thm-common-white); }
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .w-banner-full { min-height: 470px; margin-top: 24px; }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-banner-full { min-height: 470px; margin-top: 0; }
}
.w-banner-full:hover .w-banner-full-thumb { -webkit-transform: scale(1.1); -moz-transform: scale(1.1);
  -ms-transform: scale(1.1); -o-transform: scale(1.1); transform: scale(1.1); }
.w-banner-full-height { height: 100%;}
.w-banner-full-thumb { z-index: -1; }
.w-banner-full-thumb::after { position: absolute; content: ""; left: 0; top: 0; width: 100%; height: 100%;
  background-color: rgba(1, 15, 28, 0.1); }
.w-banner-full-content { position: absolute; bottom: 60px; left: 60px; right: 60px; }
@media (max-width: 575px) {
  .w-banner-full-content { left: 30px; right: 30px; }
}
.w-banner-full-content span { font-size: 16px; color: var(--thm-common-white); display: inline-block; margin-bottom: 2px; }
.w-banner-full-title { font-weight: 400; font-size: 40px; line-height: 1.05; margin-bottom: 30px; color: var(--thm-common-white); }
@media (max-width: 575px) {
  .w-banner-full-title { font-size: 35px; }
}
.w-banner-full-btn .w-btn { border-color: rgba(255, 255, 255, 0.3); padding: 4px 21px; color: var(--thm-common-white); }
.w-banner-full-btn .w-btn:hover { background-color: var(--thm-common-white); border-color: var(--thm-common-white);
  color: var(--thm-common-black); }

.w-best-banner-slider-dot-5 { position: absolute; width: auto; bottom: 33px; left: 50%; z-index: 1; }
.w-best-banner-slider-dot-5 .swiper-pagination-bullet { width: 8px; height: 8px; background-color: rgba(103, 142, 97, 0.2); }
.w-best-banner-slider-dot-5 .swiper-pagination-bullet button { font-size: 0; }
.w-best-banner-slider-dot-5 .swiper-pagination-bullet.swiper-pagination-bullet-active { background-color: var(--thm-theme-green); }
.w-best-banner-5 {  border-radius: 16px; overflow: hidden; }
.w-best-banner-item-5 { min-height: 560px; }

/*----------------------------------------*/
/*  8.6 Tooltip CSS START
/*----------------------------------------*/
.w-product-tooltip {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 100%;
  font-weight: 500;
  font-size: 12px;
  color: var(--thm-common-white);
  background-color: var(--thm-common-black);
  display: inline-block;
  width: max-content;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 4px;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24), -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  -moz-transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24), -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  -ms-transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24), -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  -o-transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24), -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24), -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
}
.w-product-tooltip::before {
  position: absolute;
  content: "";
  right: -4px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-left: 8px solid var(--thm-common-black);
  border-bottom: 8px solid transparent;
}
.w-product-tooltip-right {
  left: 100%;
  right: auto;
}
.w-product-tooltip-right::before {
  left: -4px;
  right: auto;
  border-left: 0;
  border-right: 8px solid var(--thm-common-black);
}


/** PRODUSE RECOMANDATE ************************/
.w-featured-slider { margin-right: -660px; }
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-featured-slider { margin-right: 0; } }
.w-featured-slider-arrow button { font-size: 30px; color: #B3BAC0; position: relative; }
.w-featured-slider-arrow button:not(:last-child) { padding-right: 14px; margin-right: 10px; }
.w-featured-slider-arrow button:not(:last-child)::after { position: absolute; content: "";
  right: 0; top: 63%; height: 30px; width: 1px; background-color: #D6D9E0; }
.w-featured-slider-arrow button:hover {color: var(--thm-common-black);}
.w-featured-item { min-height: 380px; padding: 87px 50px; }
@media only screen and (min-width: 576px) and (max-width: 767px) { .w-featured-item { padding: 87px 35px; } }
@media (max-width: 575px) { .w-featured-item { min-height: 280px; padding: 35px 35px; }}
.w-featured-item .w-product-rating-icon-2 { margin-bottom: 20px; }
.w-featured-thumb { z-index: -1; }
.w-featured-title { font-weight: 400; font-size: 36px; line-height: 1.17; margin-bottom: 7px; }
@media (max-width: 575px) {.w-featured-title { font-size: 25px; } }
.w-featured-title a:hover { color: var(--thm-theme-secondary); }
.w-featured-price { font-weight: 500; font-size: 20px; color: var(--thm-common-black); line-height: 1; }
.w-featured-price-wrapper { line-height: 1; margin-bottom: 2px; }
.w-featured-price.new-price { color: var(--thm-common-black); }
.w-featured-price.old-price { font-weight: 400; font-size: 14px; text-decoration-line: line-through; color: var(--thm-text-1); }
.w-featured-item-3 { padding: 0px 50px 40px; background-color: var(--thm-common-white); border: 1px solid var(--thm-border-4);
  margin-right: -1px; margin-top: -1px; }
@media (max-width: 575px) { .w-featured-item-3 { padding: 0px 30px 40px; } }
.w-featured-thumb-3 { margin-bottom: 20px; }
.w-featured-thumb-3 img { max-width: 100%; }
.w-featured-thumb-3.has-translate img { -webkit-transform: translateY(20px); -moz-transform: translateY(20px); 
  -ms-transform: translateY(20px); -o-transform: translateY(20px); transform: translateY(20px); }
.w-featured-title-3 { font-weight: 400; font-size: 26px; line-height: 1.15; margin-bottom: 14px; }
.w-featured-title-3 a:hover { color: var(--thm-theme-brown); }
.w-featured-thumb-3 { min-height: 210px; }
.w-featured-content-3 p { font-size: 16px; line-height: 1.38; margin-bottom: 19px; }
.w-featured-price-3 span {font-size: 20px; color: var(--thm-theme-brown);}

/*** PRODUSE NOI / RECOMANDATE ******************************************/
.w-trending-slider-dot .swiper-pagination-bullet.swiper-pagination-bullet-active { background-color: var(--thm-theme-secondary); }
.w-trending-banner { position: relative; height: 630px; }
@media only screen and (min-width: 768px) and (max-width: 991px) {
.w-trending-banner { height: 430px; margin-left: 0; margin-top: 50px; } }
@media only screen and (min-width: 576px) and (max-width: 767px) {
.w-trending-banner { height: 430px; margin-left: 0; margin-top: 50px; } }
@media (max-width: 575px) { 
.w-trending-banner { height: 430px; margin-left: 0; margin-top: 50px; } }
.w-trending-banner::after { position: absolute; content: ""; left: 0; bottom: 0; width: 100%; height: 100%;
background-image: -webkit-linear-gradient(180deg, rgba(1, 15, 28, 0) 44.84%, rgba(1, 15, 28, 0.6) 100%);
background-image: -moz-linear-gradient(180deg, rgba(1, 15, 28, 0) 44.84%, rgba(1, 15, 28, 0.6) 100%);
background-image: -ms-linear-gradient(180deg, rgba(1, 15, 28, 0) 44.84%, rgba(1, 15, 28, 0.6) 100%);
background-image: -o-linear-gradient(180deg, rgba(1, 15, 28, 0) 44.84%, rgba(1, 15, 28, 0.6) 100%);
background-image: linear-gradient(180deg, rgba(1, 15, 28, 0) 44.84%, rgba(1, 15, 28, 0.6) 100%); }
.w-trending-banner-content { position: absolute; bottom: 40px; left: 35px; z-index: 1; }
@media (max-width: 575px) { .w-trending-banner-content { bottom: 25px; left: 20px; } }
.w-trending-banner-title { font-weight: 500; font-size: 30px; line-height: 1.13; color: var(--thm-common-white); margin-bottom: 18px; }
.w-trending-banner-title a { background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
  background-size: 0% 1px, 0 1px; background-position: 100% 100%, 0 81%; background-repeat: no-repeat;
  transition: background-size 0.4s linear; }
.w-trending-banner-title a:hover { background-size: 0 1px, 100% 1px; }
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-trending-banner-thumb { background-position: top center; } }
@media only screen and (min-width: 992px) and (max-width: 1199px) {
.w-trending-item .w-product-action-2 { top: 30px; } }

/*** Stilizare COSUL MEU *****************************/
.w-product-item { background-color: var(--thm-common-white); border: 1px solid var(--thm-border-primary); }
.w-product-item:hover { box-shadow: 0px 4px 10px rgba(1, 15, 28, 0.14); border-color: var(--thm-common-white); }
.w-product-item:hover .w-product-thumb img { -webkit-transform: scale(1.1); -moz-transform: scale(1.1);
  -ms-transform: scale(1.1); -o-transform: scale(1.1); transform: scale(1.1); }
.w-product-item:hover .w-product-action { right: 20px; visibility: visible; opacity: 1; }
.w-product-item:hover .w-product-add-cart-btn-large-wrapper { bottom: 0; visibility: visible; opacity: 1; }
.w-product-badge { position: absolute; top: 16px; right: 20px; z-index: 1; }
.w-product-badge span { font-weight: 500; font-size: 14px; line-height: 1; color: var(--thm-common-white);
  background-color: var(--thm-theme-primary); border-radius: 4px; display: inline-block; padding: 4px 8px 2px;
  text-transform: capitalize; }
.w-product-badge span.product-hot { background-color: var(--thm-pink-2); }
.w-product-badge span.product-trending { background-color: var(--thm-green-1); }
.w-product-badge span.product-offer { background-color: var(--thm-orange-1); }
.w-product-badge span.product-sale { background-color: var(--thm-blue-1); }
.w-product-thumb { border-bottom: 1px solid var(--thm-border-primary); border-top-left-radius: 8px; border-top-right-radius: 8px;
max-height: 200px; overflow: hidden; }
.w-product-thumb img { width: 100%; }
.w-product-content { padding: 10px 30px 20px; }
.w-product-category > a { font-weight: 500; font-size: 12px; }
.w-product-category > a:hover { color: var(--thm-theme-primary); }
.w-product-title { font-weight: 500; font-size: 15px; line-height: 1.33; margin-bottom: 7px; }
.w-product-title a:hover { color: var(--thm-theme-primary); }
.w-product-rating-icon { margin-right: 6px; display: flex; align-items: center; }
.w-product-rating-icon span { color: var(--thm-yellow-3); font-size: 12px; }
.w-product-rating-icon span:not(:last-child) { margin-right: 2px; }
.w-product-rating-text span { font-weight: 500; font-size: 12px; }
.w-product-price { font-weight: 700; font-size: 15px; letter-spacing: -0.02em; color: var(--thm-theme-primary); }
.w-product-price.old-price { color: #55585B; font-size: 12px; text-decoration: line-through; font-weight: 500; }
.w-product-tab .nav-tabs { background-color: var(--thm-common-white); padding-left: 50px; }
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-product-tab .nav-tabs { padding-left: 0; } }
.w-product-tab .nav-tabs .nav-item:not(:last-child) { margin-right: 47px; }
@media (max-width: 575px) { .w-product-tab .nav-tabs .nav-item:not(:last-child) { margin-right: 30px; } }
.w-product-tab .nav-tabs .nav-item .nav-link { font-weight: 400; font-size: 20px; color: var(--thm-text-3); position: relative; }
.w-product-tab .nav-tabs .nav-item .nav-link.active { color: var(--thm-common-black); }
.w-product-tab .nav-tabs .nav-item .nav-link.active .w-product-tab-line { opacity: 1; visibility: visible; }
.w-product-tab-line { position: absolute; bottom: -13px; left: 0; visibility: hidden; opacity: 0; }
.w-product-tab-line svg path { stroke: var(--thm-theme-primary); }
.w-product-tab-border { position: relative; }
.w-product-tab-border::after { position: absolute; content: ""; left: -80px; top: 50%; width: 420px; height: 2px; 
background-color: var(--thm-border-secondary); z-index: -1; }
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-product-tab-border::after { display: none; } }
.w-product-action { position: absolute; right: -20px; bottom: 25px; z-index: 1; visibility: hidden; opacity: 0; }
.w-product-action-item { box-shadow: 0px 1px 3px rgba(1, 15, 28, 0.14); border-radius: 4px; }
.w-product-action-btn { position: relative; display: inline-block; width: 40px; height: 40px; line-height: 40px; 
text-align: center; font-size: 18px; color: var(--thm-common-black); background-color: var(--thm-common-white);
  border: 1px solid var(--thm-border-primary); border-bottom: 0; }
.w-product-action-btn:first-child { border-top-left-radius: 4px; border-top-right-radius: 4px; }
.w-product-action-btn:last-child { border-bottom-left-radius: 4px; border-bottom-right-radius: 4px;
  border-bottom: 1px solid var(--thm-border-primary); }
.w-product-action-btn:hover { color: var(--thm-common-white); background-color: var(--thm-theme-primary); 
  border-color: var(--thm-theme-primary); }
.w-product-action-btn:hover .w-product-tooltip { visibility: visible; opacity: 1; 
  -webkit-transform: translateX(-8px) translateY(-50%); -moz-transform: translateX(-8px) translateY(-50%);
  -ms-transform: translateX(-8px) translateY(-50%); -o-transform: translateX(-8px) translateY(-50%);
  transform: translateX(-8px) translateY(-50%); }
.w-product-offer-slider { margin: 0 -15px; }
@media (max-width: 575px) { .w-product-offer-slider { margin: 0; } }
.w-product-offer-slider-active { padding: 15px; }
@media (max-width: 575px) { .w-product-offer-slider-active { padding-left: 0; padding-right: 0; } }
.w-product-offer-item { box-shadow: 0px 1px 2px rgba(1, 15, 28, 0.1); }
.w-product-offer-item:hover { box-shadow: 0px 12px 14px rgba(1, 15, 28, 0.06); }
.w-product-offer-item .w-product-content { padding: 20px 40px 30px; }
@media (max-width: 575px) { .w-product-offer-item .w-product-content { padding: 20px 30px 30px; } }
.w-product-offer-item .w-product-price-wrapper { margin-bottom: 20px; }
.w-product-offer-item .w-product-action { bottom: 70px; }
.w-product-offer-more { position: relative; padding-left: 50px; }
@media (max-width: 575px) { .w-product-offer-more { padding-left: 0; } }
.w-product-offer-more-border { position: absolute; right: 210px; top: 50%; width: 650px; height: 2px;
  background-color: var(--thm-common-white); z-index: -1; }
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-product-offer-more-border { right: 0;  }}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.w-product-offer-more-border { width: 400px; }}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-product-offer-more-border { display: none; } }
.w-product-countdown-inner ul li { display: inline-block; list-style: none; font-weight: 500;
  font-size: 10px; line-height: 1; text-align: center; text-transform: uppercase; background-color: var(--thm-common-white);
  border: 1px solid var(--thm-border-3); border-radius: 5px; width: 50px; height: 50px; padding-top: 8px; }
.w-product-countdown-inner ul li:not(:last-child) { margin-right: 3px; }
.w-product-countdown-inner ul li span { display: block; font-weight: 700; font-size: 20px; line-height: 1; text-align: center;
  letter-spacing: -0.04em; text-transform: uppercase; color: var(--thm-common-black); }
.w-product-add-cart-btn-large { font-size: 18px; color: var(--thm-common-white); background-color: var(--thm-common-black);
  text-transform: capitalize; font-size: 14px; font-weight: 700; display: inline-block; width: 100%; padding: 8px 30px; }
.w-product-add-cart-btn-large-wrapper { position: absolute; bottom: -40px; left: 0; right: 0; width: 100%; visibility: hidden;
  opacity: 0; }
.w-product-add-cart-btn-large svg, .w-product-add-cart-btn-large i { margin-right: 5px; }
.w-product-add-cart-btn-large:hover { color: var(--thm-common-white); background-color: var(--thm-theme-primary); }
.w-product-sm-item:not(:last-child) { padding-bottom: 12px; margin-bottom: 12px; border-bottom: 1px solid var(--thm-border-primary); }
.w-product-sm-item .w-product-thumb { border-radius: 5px; flex: 0 0 auto; }
@media (max-width: 575px) { .w-product-sm-item .w-product-thumb { width: 100px; } }
.w-product-sm-item .w-product-category { line-height: 1; margin-bottom: 3px; }
.w-product-sm-item .w-product-title { margin-bottom: 13px; }
.w-product-sm-item .w-product-rating { line-height: 1; margin-bottom: 3px; }
@media (max-width: 575px) { .w-product-sm-item .w-product-rating { margin-bottom: 7px;  } }
@media (max-width: 575px) { .w-product-sm-item .w-product-rating-icon { margin-bottom: 5px; } }
.w-product-sm-item:hover .w-product-thumb img { -webkit-transform: scale(1.1); -moz-transform: scale(1.1);
  -ms-transform: scale(1.1); -o-transform: scale(1.1); transform: scale(1.1); }
.w-product-list-item:not(:last-child) { margin-bottom: 24px; }
.w-product-list-item:hover .w-product-list-thumb img { -webkit-transform: scale(1.1); -moz-transform: scale(1.1);
  -ms-transform: scale(1.1); -o-transform: scale(1.1); transform: scale(1.1); }
.w-product-list-item:hover .w-product-action-2 { left: 24px; visibility: visible; opacity: 1; }
.w-product-list-item .w-product-action-2 { top: 50%; -webkit-transform: translateY(-50%); -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%); -o-transform: translateY(-50%); transform: translateY(-50%); }
.w-product-list-item .w-product-list-content { border: 1px solid #E0E2E3; border-left: 0; padding-left: 60px; 
padding-right: 70px; width: 100%; }
@media only screen and (min-width: 992px) and (max-width: 1199px) {
.w-product-list-item .w-product-list-content { padding-left: 30px; padding-right: 30px; } }
@media only screen and (min-width: 768px) and (max-width: 991px) {
.w-product-list-item .w-product-list-content { padding-left: 35px; padding-right: 35px; } }
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-product-list-item .w-product-list-content { border: 1px solid #E0E2E3; border-top: 0; } }
@media (max-width: 575px) {
  .w-product-list-item .w-product-list-content {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.w-product-list-item .w-product-list-content .w-product-content-2 {
  padding-top: 33px;
  padding-bottom: 33px;
}
.w-product-list-item .w-product-list-content p {
  font-size: 16px;
  line-height: 1.5;
  color: #55585B;
  margin-bottom: 25px;
}
.w-product-list-item .w-product-list-content .w-product-price-wrapper-2 {
  margin-bottom: 12px;
}
.w-product-list-thumb {
  flex: 0 0 auto;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .w-product-list-thumb {
    width: 300px;
  }
}
.w-product-list-thumb a {
  display: block;
  width: 100%;
  height: 100%;
}
.w-product-list-thumb a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.w-product-related-slider .w-swiper-scrollbar {
  background-color: #EDEFF2;
  width: calc(100% - 410px);
  margin: auto;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .w-product-related-slider .w-swiper-scrollbar {
    width: calc(100% - 300px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .w-product-related-slider .w-swiper-scrollbar {
    width: calc(100% - 200px);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .w-product-related-slider .w-swiper-scrollbar {
    width: calc(100% - 100px);
  }
}
@media (max-width: 575px) {
  .w-product-related-slider .w-swiper-scrollbar {
    width: 100%;
  }
}

.w-product-gadget-sidebar {
  position: sticky;
  top: 73px;
}
.w-product-gadget-thumb {
  position: absolute;
  bottom: 0;
  right: -18px;
}
@media (max-width: 575px) {
  .w-product-gadget-thumb {
    right: -60px;
  }
}
.w-product-gadget-categories {
  border: 3px solid var(--thm-pink-4);
  border-radius: 8px;
  padding: 37px 40px;
}
.w-product-gadget-categories-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 22px;
}
.w-product-gadget-categories-title::after {
  position: absolute;
  content: "";
  left: 0;
  width: 150px;
  height: 1px;
  background-color: var(--thm-theme-primary);
  bottom: 0;
}
.w-product-gadget-categories-list {
  margin-bottom: 27px;
}
.w-product-gadget-categories-list ul li {
  list-style: none;
  line-height: 1;
  margin-bottom: 10px;
}
.w-product-gadget-categories-list ul li a {
  font-weight: 500;
  font-size: 14px;
  position: relative;
  padding-left: 13px;
}
.w-product-gadget-categories-list ul li a::after {
  position: absolute;
  content: "";
  left: 0;
  top: 7px;
  height: 3px;
  width: 3px;
  background-color: var(--thm-text-2);
  border-radius: 50%;
}
.w-product-gadget-categories-list ul li a:hover {
  color: var(--thm-theme-primary);
}
.w-product-gadget-banner-slider-active .swiper-slide-active .w-product-gadget-banner-title, .w-product-gadget-banner-slider-active .swiper-slide-active .w-product-gadget-banner-subtitle, .w-product-gadget-banner-slider-active .swiper-slide-active .w-product-gadget-banner-content p, .w-product-gadget-banner-slider-active .swiper-slide-active .w-product-gadget-banner-price, .w-product-gadget-banner-slider-active .swiper-slide-active .w-product-gadget-banner-btn a {
  animation-name: fadeInUp;
  animation-fill-mode: both;
}
.w-product-gadget-banner-slider-active .swiper-slide-active .w-product-gadget-banner-thumb img {
  animation-name: fadeInRight;
  animation-fill-mode: both;
}
.w-product-gadget-banner-slider-active .swiper-slide-active .w-product-gadget-banner-thumb-gradient {
  animation-name: fadeInRight;
  animation-fill-mode: both;
}
.w-product-gadget-banner-slider-active .swiper-slide-active .w-product-gadget-banner-thumb-shape .w-offer-shape {
  animation-name: fadeInRight;
  animation-fill-mode: both;
}
.w-product-gadget-banner-slider-dot.w-swiper-dot {
  position: absolute;
  right: 20px;
  left: auto;
  bottom: 50%;
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
  transform: translateY(50%);
  z-index: 1;
  width: auto;
  display: flex;
  flex-direction: column;
}
.w-product-gadget-banner-slider-dot.w-swiper-dot.w-swiper-dot .swiper-pagination-bullet {
  margin: 3px 0;
  background-color: rgba(255, 255, 255, 0.2);
}
.w-product-gadget-banner-slider-dot.w-swiper-dot.w-swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--thm-common-white);
}
.w-product-gadget-banner-item {
  border-radius: 8px;
}
.w-product-gadget-banner-content {
  padding: 45px 30px 41px;
}
.w-product-gadget-banner-price {
  display: inline-block;
  font-weight: 500;
  font-size: 14px;
  color: var(--thm-common-white);
  animation-delay: 0.1s;
  animation-duration: 1s;
}
.w-product-gadget-banner-title {
  font-weight: 700;
  font-size: 24px;
  color: var(--thm-common-white);
  animation-delay: 0.2s;
  animation-duration: 1s;
}

/* ================= 
product all slider 
==================*/
/* arrival slider home electronics*/
.w-product-arrival-slider {
  margin: 0 -15px;
}
@media (max-width: 575px) {
  .w-product-arrival-slider {
    margin: 0;
  }
}
.w-product-arrival-active {
  padding: 15px;
}
@media (max-width: 575px) {
  .w-product-arrival-active {
    padding-left: 0;
    padding-right: 0;
  }
}
.w-product-arrival-border {
  position: relative;
  padding-left: 50px;
  background-color: var(--thm-common-white);
}
.w-product-arrival-border::after {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  width: 930px;
  height: 2px;
  background-color: var(--thm-border-secondary);
  z-index: -1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .w-product-arrival-border::after {
    width: 700px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .w-product-arrival-border::after {
    width: 430px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-product-arrival-border::after {
    display: none;
  }
}

/*----------------------------------------*/
/*  8.10 Product Card Style 2 CSS
/*----------------------------------------*/
.w-product-item-2:hover .w-product-thumb-2 img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.w-product-item-2:hover .w-product-action-2 {
  left: 24px;
  visibility: visible;
  opacity: 1;
}
.w-product-title-2 {
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 2px;
}
.w-product-title-2 a:hover {
  color: var(--thm-theme-secondary);
}
.w-product-tag-2 a {
  font-size: 16px;
  position: relative;
  display: inline-block;
  line-height: 1;
}
.w-product-tag-2 a::after {
  position: absolute;
  content: "";
  left: auto;
  right: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--thm-theme-secondary);
}
.w-product-tag-2 a:hover {
  color: var(--thm-theme-secondary);
}
.w-product-tag-2 a:hover::after {
  left: 0;
  right: auto;
  width: 100%;
}
.w-product-price-2 {
  font-weight: 500;
  font-size: 16px;
  color: var(--thm-common-black);
}
.w-product-price-2.new-price {
  color: var(--thm-common-black);
}
.w-product-price-2.old-price {
  font-weight: 400;
  font-size: 14px;
  text-decoration-line: line-through;
  color: var(--thm-text-1);
}
.w-product-rating-icon-2 {
  margin-bottom: 4px;
}
.w-product-action-2 {
  position: absolute;
  left: 0;
  top: 57px;
  right: auto;
  bottom: auto;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
}
@media (max-width: 575px) {
  .w-product-action-2 {
    top: 30px;
  }
}
.w-product-action-blackStyle .w-product-action-btn-2:hover {
  background-color: var(--thm-common-black);
}
.w-product-action-primaryStyle .w-product-action-btn-3:hover {
  background-color: var(--thm-theme-primary);
}
.w-product-action-btn-2 {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  font-size: 18px;
  color: var(--thm-common-black);
  background-color: var(--thm-common-white);
  border-bottom: 0;
  box-shadow: 0px 1px 2px rgba(1, 15, 28, 0.2);
  border-radius: 50%;
  margin-bottom: 6px;
}
.w-product-action-btn-2:hover {
  color: var(--thm-common-white);
  background-color: var(--thm-common-black);
}
.w-product-action-btn-2:hover .w-product-tooltip {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(8px) translateY(-50%);
  -moz-transform: translateX(8px) translateY(-50%);
  -ms-transform: translateX(8px) translateY(-50%);
  -o-transform: translateX(8px) translateY(-50%);
  transform: translateX(8px) translateY(-50%);
}
.w-product-thumb-2 img {
  width: 100%;
}

/*----------------------------------------*/
/* 8.11 Product Card Style 3 CSS
/*----------------------------------------*/
.w-product-item-3:hover .w-product-thumb-3 img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.w-product-item-3:hover .w-product-action-3 {
  right: 20px;
  visibility: visible;
  opacity: 1;
}
.w-product-item-3:hover .w-product-add-cart-btn-large-wrapper {
  bottom: 0;
  visibility: visible;
  opacity: 1;
}
.w-product-item-3 .w-product-add-cart-btn-large-wrapper .w-product-add-cart-btn-large {
  font-weight: 400;
  font-size: 16px;
  color: var(--thm-common-white);
  padding: 5px 30px;
}
.w-product-item-3 .w-product-add-cart-btn-large-wrapper .w-product-add-cart-btn-large:hover {
  background-color: var(--thm-theme-brown);
}
.w-product-item-3.w-product-style-primary .w-product-title-3 a:hover {
  color: var(--thm-theme-primary);
}
.w-product-item-3.w-product-style-primary .w-product-badge span {
  border-radius: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-product-item-3.w-product-style-primary .w-product-thumb-3 img {
    width: 100%;
  }
}
.w-product-item-3.w-product-style-primary .w-product-add-cart-btn-large-wrapper .w-product-add-cart-btn-large:hover {
  background-color: var(--thm-theme-primary);
}
.w-product-title-3 {
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 8px;
}
.w-product-title-3 a:hover {
  color: var(--thm-theme-brown);
}
.w-product-tag-3 span {
  position: relative;
  display: inline-block;
  line-height: 1;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--thm-text-2);
}
.w-product-tag-3 span:hover {
  color: var(--thm-theme-brown);
}
.w-product-thumb-3 img {
  width: 100%;
}
.w-product-price-3 {
  font-weight: 500;
  font-size: 16px;
  color: var(--thm-common-black);
}
.w-product-price-3.new-price {
  color: var(--thm-common-black);
}
.w-product-price-3.old-price {
  font-weight: 400;
  font-size: 14px;
  text-decoration-line: line-through;
  color: var(--thm-text-1);
}
.w-product-action-3 {
  position: absolute;
  top: 20px;
  right: 0;
  bottom: auto;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
}
@media (max-width: 575px) {
  .w-product-action-3 {
    top: 30px;
  }
}
.w-product-action-btn-3 {
  position: relative;
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 40px;
  background: var(--thm-common-white);
  border: 1px solid #DFE0E1;
  box-shadow: 0px 1px 1px rgba(1, 15, 28, 0.1);
  margin-bottom: 4px;
}
.w-product-action-btn-3:last-child {
  margin-bottom: 0;
}
.w-product-action-btn-3 .w-product-tooltip {
  font-weight: 600;
  font-size: 12px;
}
.w-product-action-btn-3:hover {
  color: var(--thm-common-white);
  border-color: var(--thm-common-black);
  background: var(--thm-common-black);
  box-shadow: 0px 1px 1px rgba(1, 15, 28, 0.1);
}
.w-product-action-btn-3:hover .w-product-tooltip {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(-8px) translateY(-50%);
  -moz-transform: translateX(-8px) translateY(-50%);
  -ms-transform: translateX(-8px) translateY(-50%);
  -o-transform: translateX(-8px) translateY(-50%);
  transform: translateX(-8px) translateY(-50%);
}
.w-product-badge-3 {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
}
.w-product-badge-3 span {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--thm-common-black);
  border-radius: 50%;
  color: var(--thm-common-white);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -0.02em;
}
.w-product-more-3 .w-btn {
  font-weight: 400;
  font-size: 14px;
  padding: 6px 19px;
  color: var(--thm-common-black);
  background-color: var(--thm-common-white);
  border-color: var(--thm-common-white);
}
.w-product-more-3 .w-btn:hover {
  background-color: var(--thm-common-black);
  border-color: var(--thm-common-black);
  color: var(--thm-common-white);
}
.w-product-tab-inner-3 .nav-tabs {
  border-bottom: 1px solid #DFE0E1;
  padding-bottom: 2px;
}

/* special item */
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-special-item .w-product-thumb-3 img {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .w-special-slider {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.w-special-slider-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--thm-theme-brown);
}
.w-special-slider-thumb {
  position: relative;
  height: 100%;
  margin-right: -13px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-special-slider-thumb {
    min-height: 400px;
    margin-right: 0;
  }
}
.w-special-slider-thumb-active {
  height: 100%;
}
.w-special-arrow button {
  position: absolute;
  top: 34%;
  left: -70px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 16px;
  color: var(--thm-common-black);
  background-color: var(--thm-common-white);
  z-index: 1;
}
.w-special-arrow button.w-special-slider-button-next {
  left: auto;
  right: -70px;
}
.w-special-arrow button:hover {
  background-color: var(--thm-common-black);
  color: var(--thm-common-white);
}
.w-special-wrapper {
  margin-left: 12px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-special-wrapper {
    margin-left: 0;
    margin-top: 10px;
  }
}
.w-special-thumb img {
  object-fit: cover;
}
.w-special-hotspot-1 {
  position: absolute;
  top: 35%;
  left: 19%;
}
.w-special-hotspot-2 {
  position: absolute;
  bottom: 17%;
  right: 22%;
}
.w-special-hotspot-item {
  width: 44px;
}
.w-special-hotspot-item:hover .w-special-hotspot-content {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translate(-37%, 55px);
  -moz-transform: translate(-37%, 55px);
  -ms-transform: translate(-37%, 55px);
  -o-transform: translate(-37%, 55px);
  transform: translate(-37%, 55px);
}
.w-special-hotspot-content {
  background-color: var(--thm-common-white);
  position: relative;
  min-width: 165px;
  padding: 15px 20px;
  -webkit-transform: translate(-37%, 60px);
  -moz-transform: translate(-37%, 60px);
  -ms-transform: translate(-37%, 60px);
  -o-transform: translate(-37%, 60px);
  transform: translate(-37%, 60px);
  transform-origin: top center;
  visibility: hidden;
  opacity: 0;
}
.w-special-hotspot-content::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 14px;
  height: 14px;
  background-color: var(--thm-common-white);
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  -o-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.w-special-hotspot-content p {
  line-height: 1.2;
  margin-top: 10px;
  margin-bottom: 0;
}
.w-special-hotspot-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  margin-bottom: 0;
}

/*----------------------------------------*/
/*  8.12 Product Card Style 4 CSS
/*----------------------------------------*/
.w-product-item-4:hover .w-product-price-4 {
  visibility: hidden;
  opacity: 0;
}
.w-product-item-4:hover .w-product-add-to-cart-4 {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}
.w-product-item-4:hover .w-product-action-4 {
  visibility: visible;
  opacity: 1;
  right: 20px;
}
.w-product-item-4:hover .w-product-thumb-4 img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.w-product-action-4 {
  position: absolute;
  top: 20px;
  right: 0;
  bottom: auto;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
}
@media (max-width: 575px) {
  .w-product-action-4 {
    top: 30px;
  }
}
.w-product-action-4.has-shadow .w-product-action-btn-3 {
  box-shadow: 0px 1px 1px rgba(1, 15, 28, 0.1);
  border: 0;
}
.w-product-action-4 .w-product-action-btn-3 {
  box-shadow: none;
}
.w-product-thumb-4 {
  position: relative;
  margin-bottom: 21px;
}
.w-product-thumb-4 img {
  width: 100%;
}
.w-product-title-4 {
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 2px;
}
.w-product-title-4 a:hover {
  color: var(--thm-theme-brown);
}
.w-product-info-4 p {
  font-size: 14px;
  margin-bottom: 2px;
}
.w-product-price-4 {
  font-weight: 500;
  font-size: 16px;
  color: var(--thm-common-black);
  display: inline-block;
}
.w-product-price-4.old-price {
  font-size: 14px;
  text-decoration: line-through;
  color: var(--thm-text-2);
  font-weight: 400;
}
.w-product-add-to-cart-4 {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: var(--thm-common-white);
  font-weight: 500;
  font-size: 16px;
  color: var(--thm-common-black);
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
}
.w-product-add-to-cart-4:hover {
  color: var(--thm-theme-brown);
}

.w-best-slider .w-swiper-scrollbar {
  background-color: #D3D8DD;
  width: calc(100% - 600px);
  margin: auto;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .w-best-slider .w-swiper-scrollbar {
    width: calc(100% - 300px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .w-best-slider .w-swiper-scrollbar {
    width: calc(100% - 200px);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .w-best-slider .w-swiper-scrollbar {
    width: calc(100% - 100px);
  }
}
@media (max-width: 575px) {
  .w-best-slider .w-swiper-scrollbar {
    width: 100%;
  }
}
.w-best-item-4:hover .w-product-price-wrapper-4 {
  visibility: hidden;
  opacity: 0;
}
.w-best-item-4:hover .w-best-add-to-cart-btn {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}
.w-best-price {
  position: relative;
}
.w-best-add-to-cart-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: var(--thm-common-white);
  font-weight: 500;
  font-size: 16px;
  color: var(--thm-common-black);
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
}
.w-best-add-to-cart-btn:hover {
  color: var(--thm-theme-brown);
}

/*----------------------------------------*/
/*  8.13 Product Card Style 5 CSS
/*----------------------------------------*/



.w-product-item-5:hover .w-product-thumb-5 img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.w-product-item-5:hover .w-product-action-5 {
  left: 24px;
  visibility: visible;
  opacity: 1;
}
.w-product-tag-5 span {
  font-size: 16px;
}
.w-product-tag-5 span a:hover {
  color: var(--thm-theme-green);
}
.w-product-title-5 {
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 1px;
}
.w-product-title-5 a:hover {
  color: var(--thm-theme-green);
}
.w-product-rating-5 {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}
.w-product-rating-5 span {
  color: var(--thm-yellow-3);
  font-size: 12px;
}
.w-product-rating-5 span:not(:last-child) {
  margin-right: 2px;
}
.w-product-thumb-5 {
  border-radius: 16px;
}
.w-product-thumb-5 img {
  -webkit-transition: all 0.2s 0s ease-out;
  -moz-transition: all 0.2s 0s ease-out;
  -ms-transition: all 0.2s 0s ease-out;
  -o-transition: all 0.2s 0s ease-out;
  transition: all 0.2s 0s ease-out;
  width: 100%;
}
.w-product-action-greenStyle .w-product-action-btn-2:hover {
  background-color: var(--thm-theme-green);
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .w-product-action-5 {
    top: 30px;
  }
}
.w-product-price-5 {
  font-weight: 500;
  font-size: 16px;
  color: var(--thm-common-black);
}
.w-product-price-5.new-price {
  color: var(--thm-common-black);
}
.w-product-price-5.old-price {
  font-weight: 400;
  font-size: 14px;
  text-decoration-line: line-through;
  color: var(--thm-text-1);
}
.w-product-sm-item-wrapper-5.is-translate-24 {
  margin-left: -24px;
}
@media (max-width: 575px) {
  .w-product-sm-item-wrapper-5.is-translate-24 {
    margin-left: 0;
  }
}
.w-product-sm-section-title {
  position: relative;
  z-index: 1;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 32px;
  display: inline-block;
}
.w-product-sm-section-title svg {
  position: absolute;
  bottom: -8px;
  left: 26px;
  z-index: -1;
}
.w-product-sm-item-5 {
  padding: 11px;
  border: 1px solid rgba(1, 15, 28, 0.1);
  border-radius: 16px;
}
.w-product-sm-item-5:hover {
  border-color: var(--thm-theme-green);
}
.w-product-sm-item-5:hover .w-product-sm-thumb-5 img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.w-product-sm-item-5:not(:last-child) {
  margin-bottom: 12px;
}
.w-product-sm-thumb-5 {
  flex: 0 0 auto;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 24px;
}
.w-product-sm-thumb-5 img {
  width: 140px;
  height: 140px;
  border-radius: 8px;
  object-fit: cover;
}
@media (max-width: 575px) {
  .w-product-sm-thumb-5 img {
    margin-right: 15px;
  }
}
.w-product-sm-tag-5 {
  line-height: 1;
  margin-bottom: 2px;
}
.w-product-sm-tag-5 span {
  font-size: 14px;
  color: var(--thm-text-2);
}
.w-product-sm-tag-5 span a:hover {
  color: var(--thm-theme-green);
}
.w-product-sm-title-5 {
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 14px;
}
.w-product-sm-title-5 a:Hover {
  color: var(--thm-theme-green);
}
.w-product-sm-rating-5 {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  line-height: 1;
}
.w-product-sm-rating-5 span {
  color: var(--thm-yellow-3);
  font-size: 12px;
}
.w-product-sm-rating-5 span:not(:last-child) {
  margin-right: 2px;
}
.w-product-sm-price-5 {
  font-weight: 500;
  font-size: 15px;
  color: var(--thm-common-black);
  letter-spacing: -0.02em;
}
.w-product-sm-price-5.new-price {
  color: var(--thm-common-black);
}
.w-product-sm-price-5.old-price {
  font-weight: 400;
  font-size: 13px;
  text-decoration-line: line-through;
  color: var(--thm-text-1);
}

.w-best-slider-5:hover .w-best-slider-arrow-5 button {
  visibility: visible;
  opacity: 1;
  left: 0;
}
.w-best-slider-5:hover .w-best-slider-arrow-5 button.w-best-slider-5-button-next {
  left: auto;
  right: 0;
}
.w-best-slider-arrow-5 button {
  position: absolute;
  top: 28%;
  z-index: 1;
  left: 20px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  line-height: 50px;
  text-align: center;
  font-size: 18px;
  color: var(--thm-text-2);
  background-color: var(--thm-common-white);
  border: 3px solid #F7F7F7;
  border-radius: 50%;
  visibility: hidden;
  opacity: 0;
}
.w-best-slider-arrow-5 button svg {
  -webkit-transform: translate(-1px, -2px);
  -moz-transform: translate(-1px, -2px);
  -ms-transform: translate(-1px, -2px);
  -o-transform: translate(-1px, -2px);
  transform: translate(-1px, -2px);
}
.w-best-slider-arrow-5 button:hover {
  background-color: var(--thm-theme-green);
  color: var(--thm-common-white);
  border-color: var(--thm-common-white);
}
.w-best-slider-arrow-5 button.w-best-slider-5-button-next {
  left: auto;
  right: 20px;
  -webkit-transform: translateX(50%);
  -moz-transform: translateX(50%);
  -ms-transform: translateX(50%);
  -o-transform: translateX(50%);
  transform: translateX(50%);
}
.w-best-slider-arrow-5 button.w-best-slider-5-button-next svg {
  -webkit-transform: translate(1px, -2px);
  -moz-transform: translate(1px, -2px);
  -ms-transform: translate(1px, -2px);
  -o-transform: translate(1px, -2px);
  transform: translate(1px, -2px);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-best-slider-wrapper-5 {
    margin-top: 50px;
  }
}
.w-best-slider-dot-5 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--thm-theme-green);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .w-best-item-5 .w-product-action-5 {
    top: 15px;
  }
}

/*** DETALII PRODUS **********************************/
.w-product-details-wrapper { margin-left: 21px; }
.w-product-details-wrapper.has-sticky { position: sticky; top: 120px; }
@media only screen and (min-width: 992px) and (max-width: 1199px) { .w-product-details-wrapper { margin-left: 0; } }
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-product-details-wrapper { margin-left: 0; margin-top: 50px; } }
.w-product-details-wrapper > p { font-size: 15px; line-height: 1.7; }
.w-product-details-wrapper > p span { font-weight: 500; color: var(--thm-theme-primary); }
.w-product-details-nav-main-thumb { position: relative; }
.w-product-details-thumb-wrapper { position: sticky; top: 120px; margin-right: 20px; }
.w-product-details-thumb-wrapper .nav-tabs { margin-right: 10px; }
.w-product-details-thumb-wrapper .nav-tabs .nav-link { width: 78px; height: 100px; position: relative; }
@media (max-width: 575px) { .w-product-details-thumb-wrapper .nav-tabs .nav-link {  margin-right: 10px; margin-bottom: 10px; } }
.w-product-details-thumb-wrapper .nav-tabs .nav-link:not(:last-child) { margin-bottom: 10px; }
.w-product-details-thumb-wrapper .nav-tabs .nav-link::after { position: absolute; content: ""; width: 100%; height: 100%;
background-color: transparent; border: 1px solid transparent; top: 0; left: 0; }
.w-product-details-thumb-wrapper .nav-tabs .nav-link.active::after, .w-product-details-thumb-wrapper .nav-tabs .nav-link:hover::after {
border-color: var(--thm-common-black); }
.w-product-details-thumb-wrapper .nav-tabs .nav-link img { width: 100%; height: 100%; object-fit: cover; }
.w-product-details-thumb-wrapper .nav-tabs .nav-link .nav-video-btn { position: absolute; top: 0; right: 0; width: 24px; height: 24px;
background-color: var(--thm-common-black); color: var(--thm-common-white); font-size: 15px; }
.w-product-details-thumb-slider { position: sticky; top: 120px; }
.w-product-details-thumb-slider:hover .w-product-details-thumb-arrow button { visibility: visible; opacity: 1; left: 20px; }
.w-product-details-thumb-slider:hover .w-product-details-thumb-arrow button.w-product-details-thumb-slider-5-button-next {
left: auto; right: 20px; }
.w-product-details-thumb-arrow button { position: absolute; top: 50%; left: 0px; z-index: 1; width: 40px; height: 40px;
line-height: 36px; text-align: center; border-radius: 50%; margin: 0 5px; background-color: var(--thm-common-white);
color: var(--thm-common-black); box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.01); visibility: hidden; opacity: 0; }
.w-product-details-thumb-arrow button.w-product-details-thumb-slider-5-button-next { left: auto; right: 0; }
.w-product-details-thumb-arrow button:hover { background-color: var(--thm-theme-primary); color: var(--thm-common-white);
box-shadow: none; }
.w-product-details-thumb-video-btn { position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); -o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%); color: var(--thm-common-black); border-radius: 50%; display: inline-block;
width: 80px; height: 80px; line-height: 80px; text-align: center; background-color: var(--thm-common-white);
-webkit-animation: w-pulse-2 2s infinite; -moz-animation: w-pulse-2 2s infinite; -ms-animation: w-pulse-2 2s infinite;
-o-animation: w-pulse-2 2s infinite; animation: w-pulse-2 2s infinite; }
.w-product-details-thumb-video-btn:hover { color: var(--thm-common-white); background-color: var(--thm-theme-primary); }
.w-product-details-thumb-gallery-item img { width: 100%; }
.w-product-details-category span { font-size: 16px; line-height: 1; }
.w-product-details-category span a:hover { color: var(--thm-theme-primary); }
.w-product-details-title { font-size: 32px; font-weight: 500; line-height: 1; margin-bottom: 15px; }
.w-product-details-stock { margin-right: 12px; }
.w-product-details-stock span { display: inline-block; font-size: 15px; color: var(--thm-theme-primary); 
background-color: rgba(9, 137, 255, 0.06); line-height: 1; padding: 4px 12px; }
.w-product-details-rating { margin-right: 11px; display: -webkit-box; display: -moz-box; display: -ms-flexbox;
display: -webkit-flex; display: flex; align-items: center; }
.w-product-details-rating span { font-size: 12px; color: #FFB21D; }
.w-product-details-rating span:not(:last-child) { margin-right: 3px; }
.w-product-details-price { font-weight: 500; font-size: 24px; letter-spacing: -0.02em; color: var(--thm-common-black); }
.w-product-details-price.new-price { color: var(--thm-common-black); }
.w-product-details-price.old-price { font-weight: 400; font-size: 16px; text-decoration-line: line-through; color: #767A7D; }
.w-product-details-variation { margin-bottom: 30px; }
.w-product-details-variation-title { font-size: 15px; font-weight: 400; margin-bottom: 4px; }
.w-product-details-variation-item:not(:last-child) { margin-bottom: 15px; }
.w-product-details-variation-list button { display: inline-block; width: 26px; height: 26px; border-radius: 50%; position: relative;
-webkit-transition: box-shadow 0.2s 0s linear; -moz-transition: box-shadow 0.2s 0s linear; -ms-transition: box-shadow 0.2s 0s linear;
  -o-transition: box-shadow 0.2s 0s linear; transition: box-shadow 0.2s 0s linear; }
.w-product-details-variation-list button span[data-bg-color] { position: absolute; top: 50%; left: 50%; width: 100%; height: 100%;
background-color: var(--thm-common-white); border-radius: 50%; -webkit-transition: all 0.2s 0s linear;
-moz-transition: all 0.2s 0s linear; -ms-transition: all 0.2s 0s linear; -o-transition: all 0.2s 0s linear; transition: all 0.2s 0s linear;
-webkit-transform: translate(-50%, -50%); -moz-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%); transform: translate(-50%, -50%); }
.w-product-details-variation-list button .w-color-variation-tootltip { position: absolute; bottom: 100%; left: 50%; 
-webkit-transform: translateX(-50%) translateY(2px); -moz-transform: translateX(-50%) translateY(2px); 
-ms-transform: translateX(-50%) translateY(2px); -o-transform: translateX(-50%) translateY(2px); 
transform: translateX(-50%) translateY(2px); width: max-content; background-color: var(--thm-common-black); 
color: var(--thm-common-white); text-align: center; font-size: 12px; font-weight: 500; line-height: 1; padding: 4px 6px; 
border-radius: 4px; visibility: hidden; opacity: 0;  
-webkit-transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24), -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
-moz-transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24), -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
-ms-transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24), -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
-o-transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24), -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24), -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24); }
.w-product-details-variation-list button .w-color-variation-tootltip::before { position: absolute; content: ""; bottom: -6px; left: 50%; 
-webkit-transform: translateX(-50%); -moz-transform: translateX(-50%); -ms-transform: translateX(-50%); -o-transform: translateX(-50%);
transform: translateX(-50%); width: 0; height: 0; border-top: 6px solid var(--thm-common-black); border-left: 6px solid transparent;
border-right: 6px solid transparent; }
.w-product-details-variation-list button.w-size-variation-btn { width: 40px; height: 40px; border: 1px solid rgba(1, 15, 28, 0.2);
border-radius: 0; -webkit-transition: all 0.2s 0s linear; -moz-transition: all 0.2s 0s linear; -ms-transition: all 0.2s 0s linear;
-o-transition: all 0.2s 0s linear; transition: all 0.2s 0s linear; }
.w-product-details-variation-list button.w-size-variation-btn:hover, .w-product-details-variation-list button.w-size-variation-btn.active {
box-shadow: none; border-color: var(--thm-common-black); box-shadow: none; color: var(--thm-common-black); }
.w-product-details-variation-list button:hover, .w-product-details-variation-list button.active {
box-shadow: 0px 1px 2px rgba(1, 15, 28, 0.2); }
.w-product-details-variation-list button:hover span[data-bg-color], .w-product-details-variation-list button.active span[data-bg-color] {
-webkit-transform: translate(-50%, -50%) scale(0.7); -moz-transform: translate(-50%, -50%) scale(0.7);
-ms-transform: translate(-50%, -50%) scale(0.7); -o-transform: translate(-50%, -50%) scale(0.7); 
transform: translate(-50%, -50%) scale(0.7); }
.w-product-details-variation-list button:hover .w-color-variation-tootltip { visibility: visible; opacity: 1;
-webkit-transform: translateX(-50%) translateY(-6px); -moz-transform: translateX(-50%) translateY(-6px);
  -ms-transform: translateX(-50%) translateY(-6px); -o-transform: translateX(-50%) translateY(-6px);
  transform: translateX(-50%) translateY(-6px); }
.w-product-details-action-title { font-size: 16px; font-weight: 400; margin-bottom: 13px; }
.w-product-details-quantity .w-product-quantity { width: 122px; border-radius: 0; }
.w-product-details-quantity .w-cart-plus, .w-product-details-quantity .w-cart-minus { width: 24px; height: 24px; line-height: 24px;
text-align: center; border-radius: 50%; left: 14px; }
.w-product-details-quantity .w-cart-plus:hover, .w-product-details-quantity .w-cart-minus:hover { 
background-color: var(--thm-common-white); color: var(--thm-theme-primary); }
.w-product-details-quantity .w-cart-plus { left: auto; right: 14px; }
.w-product-details-quantity .w-cart-input[type=text] { height: 46px; line-height: 46px; background-color: #F3F5F6;
border: 0; border-radius: 0; font-size: 16px; color: var(--thm-common-black); }
.w-product-details-add-to-cart-btn { font-size: 16px; color: var(--thm-common-black); text-align: center; padding: 9px 30px;
border: 1px solid #E0E2E3; }
.w-product-details-add-to-cart-btn:hover { background-color: var(--thm-common-black); border-color: var(--thm-common-black);
  color: var(--thm-common-white); }
.w-product-details-buy-now-btn { display: inline-block; font-size: 16px; font-weight: 500; padding: 10px 30px; max-width: 300px; margin-right: 10px;
background-color: var(--thm-theme-primary); color: var(--thm-common-white); }
.w-product-details-buy-now-btn:hover { background-color: var(--thm-common-black); color: var(--thm-common-white); }
.w-product-details-favorite-btn { display: inline-block; font-size: 16px; font-weight: 500; padding: 10px 30px; max-width: 220px; margin-left: 10px;
background-color: var(--thm-theme-favorite); color: var(--thm-common-white); }
.w-product-details-favorite-btn:hover { background-color: var(--thm-common-black); color: var(--thm-common-white); }
.w-product-details-action-wrapper { margin-bottom: 17px; }
.w-product-details-action-sm { padding-bottom: 9px; border-bottom: 1px solid #EAEBED; margin-bottom: 25px; }
.w-product-details-action-sm-btn { font-size: 16px; margin-bottom: 10px; }
.w-product-details-action-sm-btn:not(:last-child) { margin-right: 10px; }
.w-product-details-action-sm-btn i, .w-product-details-action-sm-btn svg { margin-right: 2px; }
.w-product-details-action-sm-btn:hover { color: var(--thm-theme-primary); }
.w-product-details-query { margin-bottom: 22px; }
.w-product-details-query-item:not(:last-child) { margin-bottom: 3px; }
.w-product-details-query-item > span { font-size: 15px; color: var(--thm-common-black); line-height: 1.4; margin-right: 6px; }
.w-product-details-query-item p { font-size: 15px; margin-bottom: 0; line-height: 1.4; }
.w-product-details-social { margin-bottom: 22px; }
.w-product-details-social span { font-size: 15px; color: var(--thm-common-black); margin-right: 2px; }
.w-product-details-social a { display: inline-block; width: 38px; height: 38px; line-height: 36px; text-align: center;
border: 1px solid #E6E7E8; border-radius: 50%; }
.w-product-details-social a:hover { background-color: var(--thm-theme-primary); border-color: var(--thm-theme-primary);
  color: var(--thm-common-white); }
.w-product-details-msg ul li { list-style: none; position: relative; font-size: 15px; padding-left: 25px; }
.w-product-details-msg ul li::after { position: absolute; content: url("../images/icons/check-3.svg"); top: 4px; left: 0;
width: 18px; height: 18px; line-height: 16px; text-align: center; color: var(--thm-common-white); 
-webkit-transition: all 0.2s 0s linear; -moz-transition: all 0.2s 0s linear; -ms-transition: all 0.2s 0s linear;
-o-transition: all 0.2s 0s linear; transition: all 0.2s 0s linear; }
.w-product-details-payment { background-color: #F3F5F6; padding: 18px 30px; }
.w-product-details-payment p { font-size: 16px; line-height: 1; margin-bottom: 0; margin-right: 46px; flex: 0 0 auto; }
@media only screen and (min-width: 992px) and (max-width: 1199px) {
.w-product-details-payment p { margin-right: 25px; } }
@media (max-width: 575px) { .w-product-details-payment p { margin-right: 0; margin-bottom: 15px; }  
.w-product-details-payment p br { display: none; } }
.w-product-details-desc-title { font-size: 34px; font-weight: 500; margin-bottom: 13px; }
@media only screen and (min-width: 576px) and (max-width: 767px) { .w-product-details-desc-title { font-size: 30px; } }
@media (max-width: 575px) {.w-product-details-desc-title { font-size: 26px;} }
.w-product-details-desc-title-2 { font-size: 34px; font-weight: 400; margin-bottom: 14px; }
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-product-details-desc-title-2 { font-size: 25px; } }
.w-product-details-desc-content { margin-bottom: 25px; padding-right: 45px; }
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
.w-product-details-desc-content { padding-right: 0; } }
@media (max-width: 575px) { .w-product-details-desc-content { padding-left: 0; } }
.w-product-details-desc-content span { font-size: 20px; color: var(--thm-common-black); }
.w-product-details-desc-content p { font-size: 16px; line-height: 1.6; }
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-product-details-desc-content-2 { padding-right: 0; padding-left: 0; } }
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-product-details-desc-content-2.pt-75 { padding-top: 25px;} }
.w-product-details-desc-content-2 p { font-size: 16px; line-height: 1.6; }
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-product-details-desc-thumb img { max-width: 100%; } }
.w-product-details-desc-list { padding-top: 13px; }
.w-product-details-desc-list ul li { list-style: none; font-size: 16px; color: var(--thm-common-black); position: relative;
padding-left: 17px; }
.w-product-details-desc-list ul li:not(:last-child) { margin-bottom: 3px; }
.w-product-details-desc-list ul li::after { position: absolute; content: ""; left: 0; top: 11px; width: 4px; height: 4px;
background-color: #A8ACB0; border-radius: 50%; }
.w-product-details-desc-fact-thumb img { margin-bottom: 16px; }
.w-product-details-desc-fact-content span { display: inline-block; font-size: 50px; line-height: 1.2; 
color: var(--thm-common-black); }
@media only screen and (min-width: 768px) and (max-width: 991px) { .w-product-details-desc-fact-content span {
font-size: 35px; } }
@media only screen and (min-width: 576px) and (max-width: 767px) { .w-product-details-desc-fact-content span { font-size: 30px; } }
@media (max-width: 575px) { .w-product-details-desc-fact-content span { font-size: 25px; } }
.w-product-details-desc-fact-content p { font-size: 22px; } 
@media (max-width: 575px) { .w-product-details-desc-fact-content p { font-size: 20px; } }
.w-product-details-additional-info { padding-top: 60px;}
@media (max-width: 575px) { .w-product-details-additional-info { overflow-x: scroll; } }
.w-product-details-additional-info-title { font-size: 24px; font-weight: 400; margin-bottom: 16px; display: none; }
.w-product-details-additional-info.w-table-style-2 { padding-top: 50px; }
.w-product-details-additional-info.w-table-style-2 .w-product-details-additional-info-title { display: block; }
.w-product-details-additional-info.w-table-style-2 table { border: 0; border-collapse: separate; border-spacing: 0 7px; }
.w-product-details-additional-info.w-table-style-2 table tr { border: 0; }
.w-product-details-additional-info.w-table-style-2 table tr:not(:last-child) { border: 0; margin-bottom: 6px; }
.w-product-details-additional-info.w-table-style-2 table tr td { padding: 7px 24px; border: 1px solid #E6E7E8; }
.w-product-details-additional-info.w-table-style-2 table tr td:first-child { padding-left: 24px; border-right: 0; }
.w-product-details-additional-info.w-table-style-2 table tr td:last-child { padding-left: 34px; }
.w-product-details-additional-info table { border: 1px solid #E0E2E3; width: 100%; }
.w-product-details-additional-info table tr:not(:last-child) { border-bottom: 1px solid #ECEDED; }
.w-product-details-additional-info table tr td { padding: 12px 34px; }
.w-product-details-additional-info table tr td:first-child { font-size: 16px; color: var(--thm-common-black); 
background-color: #F9F9F9;  width: 306px; }
.w-product-details-additional-info table tr td:last-child { font-size: 16px; color: var(--thm-text-body); }
.w-product-details-review-number { border: 1px solid #E0E2E3; padding: 35px 43px 33px 40px; }
@media (max-width: 575px) { .w-product-details-review-number { padding: 35px 25px 33px 25px; } }
.w-product-details-review-number-title { font-size: 20px; font-weight: 500; margin-bottom: 14px; }
.w-product-details-review-summery { margin-bottom: 12px; }
.w-product-details-review-summery-value span { font-size: 40px; font-weight: 500; color: var(--thm-common-black); margin-right: 8px; }
.w-product-details-review-summery-rating { margin-right: 3px; }
.w-product-details-review-summery-rating span { color: #FFB21D; }
.w-product-details-review-summery-rating p { margin-left: 4px; font-size: 14px; margin-bottom: 0; }
.w-product-details-review-rating-item > span { color: #A0A2A4; font-size: 15px; margin-right: 10px; }
.w-product-details-review-rating-bar { width: 260px; background-color: #EDEEEE; height: 10px; position: relative; 
margin-right: 12px; }
@media (max-width: 575px) { .w-product-details-review-rating-bar { width: 130px; } }
.w-product-details-review-rating-bar-inner { height: 100%; background-color: #FFB21D; display: inline-block; position: absolute; 
top: 0; left: 0; }
.w-product-details-review-rating-percent span { font-size: 14px; }
.w-product-details-review-title { font-size: 24px; font-weight: 500; margin-bottom: 22px; }
@media (max-width: 575px) { .w-product-details-review-list { padding-right: 0; } }
.w-product-details-review-avater:not(:last-child) { margin-bottom: 32px; }
.w-product-details-review-avater-thumb img { width: 60px; height: 60px; border-radius: 50%; margin-right: 20px; }
.w-product-details-review-avater-rating { line-height: 1; margin-bottom: 3px; }
.w-product-details-review-avater-rating span { font-size: 10px; margin-right: 2px; color: #FFB21D; }
.w-product-details-review-avater-title { font-size: 16px; font-weight: 500; margin-bottom: 9px; display: inline-block; }
.w-product-details-review-avater-meta { font-size: 14px; position: relative; padding-left: 11px; margin-left: 3px; }
.w-product-details-review-avater-meta::after { position: absolute; content: ""; left: 0; top: 8px; width: 4px; height: 4px;
border-radius: 50%; background-color: #A8ACB0; }
.w-product-details-review-avater-comment p { font-size: 14px; margin-bottom: 0; line-height: 1.4; }
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-product-details-review-form { margin-top: 50px; } }
.w-product-details-review-form > p { font-size: 16px; margin-bottom: 8px; }
.w-product-details-review-form-title { font-size: 24px; font-weight: 500; margin-bottom: 4px; }
.w-product-details-review-form-rating { margin-bottom: 28px; }
.w-product-details-review-form-rating p { margin-bottom: 0; font-size: 14px; margin-right: 8px; }
.w-product-details-review-form-rating-icon span { font-size: 12px; color: #FFB21D; }
.w-product-details-review-input-wrapper { margin-bottom: 11px; }
.w-product-details-review-input-box { position: relative; }
.w-product-details-review-input-box:not(:last-child) { margin-bottom: 29px; }
.w-product-details-review-input input { height: 56px; background: #FFFFFF; border: 1px solid #E0E2E3; font-size: 14px; color: var(--thm-common-black); }
.w-product-details-review-input input::-webkit-input-placeholder { color: #95999D; }
.w-product-details-review-input input::-moz-placeholder { color: #95999D; }
.w-product-details-review-input input:-moz-placeholder { color: #95999D; }
.w-product-details-review-input input:-ms-input-placeholder { color: #95999D; }
.w-product-details-review-input input::placeholder { color: #95999D; }
.w-product-details-review-input textarea { height: 165px; resize: none; }
.w-product-details-review-input-title label { font-size: 14px; color: var(--thm-common-black); position: absolute; top: -7px;
left: 20px; padding: 0 5px; background-color: var(--thm-common-white); line-height: 1; }
.w-product-details-review-input-eye { position: absolute; right: 26px; top: 50%; -webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%); -ms-transform: translateY(-50%); -o-transform: translateY(-50%); transform: translateY(-50%); }
.w-product-details-review-input-eye .open-eye { display: none; }
.w-product-details-review-input-eye:hover { cursor: pointer; }
.w-product-details-review-input-eye:hover span { color: var(--thm-common-black); }
.w-product-details-review-remeber input { display: none; }
.w-product-details-review-remeber input:checked ~ label::after { background-color: var(--thm-theme-primary);
border-color: var(--thm-theme-primary); }
.w-product-details-review-remeber input:checked ~ label::before { visibility: visible; opacity: 1; }
.w-product-details-review-remeber label { font-size: 15px; color: #55585B; position: relative; padding-left: 26px; z-index: 1; }
.w-product-details-review-remeber label::after { position: absolute; content: ""; top: 4px; left: 0; width: 18px; height: 18px;
line-height: 16px; text-align: center; border: 1px solid #C3C7C9; z-index: -1; -webkit-transition: all 0.2s 0s ease-out;
-moz-transition: all 0.2s 0s ease-out; -ms-transition: all 0.2s 0s ease-out; -o-transition: all 0.2s 0s ease-out;
transition: all 0.2s 0s ease-out; }
.w-product-details-review-remeber label::before { position: absolute; content: url("../images/icons/check.svg"); top: 4px;
left: 0; width: 18px; height: 18px; line-height: 16px; text-align: center; visibility: hidden; opacity: 0; color: var(--thm-common-white);
-webkit-transition: all 0.2s 0s ease-out; -moz-transition: all 0.2s 0s ease-out; -ms-transition: all 0.2s 0s ease-out;
-o-transition: all 0.2s 0s ease-out; transition: all 0.2s 0s ease-out; }
.w-product-details-review-remeber label a:hover { color: var(--thm-theme-primary); }
.w-product-details-review-remeber label:hover { cursor: pointer; }
.w-product-details-review-btn { font-size: 16px; font-weight: 500; color: var(--thm-common-white); padding: 9px 45px;
background-color: var(--thm-theme-primary); }
.w-product-details-bottom { border-bottom: 1px solid #E0E2E3; }
.w-product-details-tab-nav .nav-tabs { padding-bottom: 12px; border-bottom: 1px solid #E0E2E3; }
@media (max-width: 575px) { .w-product-details-tab-nav .nav-tabs { padding-bottom: 0; } }
.w-product-details-tab-nav .nav-tabs .nav-link { font-size: 20px; color: #A0A2A4; padding-left: 9px; padding-right: 7px; 
position: relative; }
.w-product-details-tab-nav .nav-tabs .nav-link:not(:first-child) { margin-left: 40px; }
.w-product-details-tab-nav .nav-tabs .nav-link.active, .w-product-details-tab-nav .nav-tabs .nav-link:hover { 
color: var(--thm-common-black); }
.w-product-details-tab-nav .nav-tabs .nav-link.active::after, .w-product-details-tab-nav .nav-tabs .nav-link:hover::after {
width: 100%; left: 0; right: auto; }
@media (max-width: 575px) {.w-product-details-tab-nav .nav-tabs .nav-link::after { position: absolute;  content: "";
left: auto; right: 0; bottom: -1px; width: 0%; height: 2px; background-color: var(--thm-common-black);
-webkit-transition: all 0.3s 0s ease-in-out; -moz-transition: all 0.3s 0s ease-in-out;
-ms-transition: all 0.3s 0s ease-in-out; -o-transition: all 0.3s 0s ease-in-out; transition: all 0.3s 0s ease-in-out; }
}
@media (max-width: 575px) { .w-product-details-tab-nav .nav-tabs span#productTabMarker { display: none !important; } }
.w-product-details-tab-line { position: absolute; bottom: 0; height: 1px; background-color: var(--thm-common-black); display: block; }
.w-product-details-views { margin-bottom: 10px; }
.w-product-details-views > span { color: var(--thm-common-black); font-size: 16px; margin-right: 8px; }
.w-product-details-views p { font-size: 16px; margin-bottom: 0; }
.w-product-details-views p span { color: var(--thm-common-black); font-weight: 500; }
.w-product-details-stock-bar p { font-size: 15px; margin-bottom: 5px; }
.w-product-details-stock-bar p span { font-weight: 500; color: var(--thm-common-black); }
.w-product-details-stock-bar-line { height: 4px; position: relative; }
.w-product-details-stock-bar-line-inner { position: absolute; top: 0; left: 0; background-color: var(--thm-theme-primary);
height: 100%;  display: inline-block; }
.w-product-details-wishlist-btn { display: inline-block; width: 46px; height: 46px; line-height: 46px; text-align: center;
background-color: var(--thm-common-white); box-shadow: 0px 1px 3px rgba(1, 15, 28, 0.1); }
.w-product-details-wishlist-btn:hover { background-color: var(--thm-common-black); color: var(--thm-common-white); }
.w-product-details-countdown { padding: 10px 20px; border: 1px solid var(--thm-pink-1); background-color: rgba(253, 75, 107, 0.05); }
.w-product-details-countdown-title { font-size: 18px; font-weight: 500; color: var(--thm-pink-1); margin-bottom: 0; }
@media (max-width: 575px) { .w-product-details-countdown-title { margin-bottom: 7px; } }
.w-product-details-countdown-time ul { display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; 
display: flex; align-items: center; }
.w-product-details-countdown-time ul li { list-style: none; font-size: 16px; font-weight: 500; color: var(--thm-pink-1);
position: relative; }
.w-product-details-countdown-time ul li:not(:last-child) { margin-right: 24px; }
.w-product-details-countdown-time ul li:not(:last-child)::after, .w-product-details-countdown-time ul li:not(:last-child)::before {
position: absolute; content: ""; right: -13px; top: 7px; width: 3px; height: 3px; border-radius: 50%; background-color: var(--thm-pink-1); }
.w-product-details-countdown-time ul li:not(:last-child)::before { top: 15px; }
.w-product-details-thumb-style2 { margin-right: 78px; }
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-product-details-thumb-style2 { margin-right: 0; } }
.w-product-details-thumb-style2 .nav-tabs { margin-right: 0; }
.w-product-details-thumb-style2 .nav-tabs .nav-link { width: 116px; height: 116px; }
.w-product-details-thumb-style2 .nav-tabs .nav-link:not(:last-child) { margin-right: 8px; }
.w-product-details-thumb-style2 .w-product-details-nav-main-thumb { margin-bottom: 14px; }
.w-product-details-wrapper-style2 { margin-left: 0; }
.w-product-details-wrapper-style2 .w-product-details-wrapper > p { margin-bottom: 18px; }
.w-product-details-wrapper-style2 .w-product-details-title { font-size: 30px; margin-bottom: 20px; }
.w-product-details-wrapper-style2 .w-product-details-category span { display: inline-block; margin-bottom: 10px; }
.w-product-details-wrapper-style2 .w-product-details-price { font-size: 22px; }
.w-product-details-wrapper-style2 .w-product-details-reviews span { font-size: 15px; }
.w-product-details-wrapper-style2 .w-product-details-variation { margin-bottom: 20px; }
.w-product-details-wrapper-style2 .w-product-details-variation-title { -webkit-transform: translateY(3px);
-moz-transform: translateY(3px); -ms-transform: translateY(3px); -o-transform: translateY(3px); transform: translateY(3px);
margin-right: 10px; }
.w-product-details-wrapper-style2 .w-product-details-inventory { margin-bottom: 13px; }
.w-product-details-wrapper-style2 .w-product-details-quantity .w-product-quantity { background-color: var(--thm-common-white);
box-shadow: 0px 1px 3px rgba(1, 15, 28, 0.1); }
.w-product-details-wrapper-style2 .w-product-details-quantity .w-cart-input[type=text] { background-color: var(--thm-common-white); }
.w-product-details-wrapper-style2 .w-product-details-quantity .w-cart-plus, .w-product-details-wrapper-style2 .w-product-details-quantity .w-cart-minus {
left: 4px; }
.w-product-details-wrapper-style2 .w-product-details-quantity .w-cart-plus::after, .w-product-details-wrapper-style2 .w-product-details-quantity .w-cart-minus::after {
position: absolute; content: ""; left: 28px; top: 2px; width: 1px; height: 20px; background-color: rgba(1, 15, 28, 0.1); }
.w-product-details-wrapper-style2 .w-product-details-quantity .w-cart-plus { left: auto; right: 4px; }
.w-product-details-wrapper-style2 .w-product-details-quantity .w-cart-plus::after { left: auto; right: 28px; }
.w-product-details-wrapper-style2 .w-product-details-add-to-cart { width: 295px; }
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
.w-product-details-wrapper-style2 .w-product-details-add-to-cart { width: 258px; } }
@media only screen and (min-width: 992px) and (max-width: 1199px) { 
.w-product-details-wrapper-style2 .w-product-details-add-to-cart { width: 262px; } }
.w-product-details-wrapper-style2 .w-product-details-add-to-cart-btn { background-color: var(--thm-theme-primary);
border-color: var(--thm-theme-primary); color: var(--thm-common-white); }
.w-product-details-wrapper-style2 .w-product-details-add-to-cart-btn:hover { background-color: var(--thm-common-black);
border-color: var(--thm-common-black); color: var(--thm-common-white); }
.w-product-details-wrapper-style2 .w-product-details-buy-now-btn { background-color: var(--thm-common-white);
color: var(--thm-common-black); box-shadow: 0px 1px 3px rgba(1, 15, 28, 0.1); }
.w-product-details-wrapper-style2 .w-product-details-buy-now-btn:hover { background-color: var(--thm-common-black);
color: var(--thm-common-white); }
.w-product-details-wrapper-style2 .w-product-details-action-wrapper { margin-bottom: 25px; }
.w-product-details-wrapper-style2 .w-product-details-social { margin-bottom: 28px;}
.w-product-details-wrapper-style2 .w-product-details-social a { border-radius: 0; background-color: var(--thm-common-white);
border-color: var(--thm-common-white); box-shadow: 0px 1px 3px rgba(1, 15, 28, 0.1); }
.w-product-details-wrapper-style2 .w-product-details-social a:hover { background-color: var(--thm-theme-primary);
border-color: var(--thm-theme-primary); color: var(--thm-common-white); }
.w-product-details-wrapper-style2 .w-product-details-payment { border: 1px solid #D3DAE1;
background-color: transparent; }
.w-product-details-wrapper-style2 .w-product-details-payment p { font-size: 15px; margin-right: 40px; }
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
.w-product-details-wrapper-style2 .w-product-details-payment p { margin-right: 0; } }
.w-product-details-wrapper-style2 .w-product-details-payment p span { color: var(--thm-common-black); }
.w-product-details-bottom-style2 .nav-tabs .nav-link { padding-left: 0; padding-right: 0; }
@media (max-width: 575px) { 
.w-product-details-bottom-style2 .nav-tabs .nav-link:not(:last-child) { margin-left: 0; padding-left: 20px; 
padding-right: 20px; margin-bottom: 10px; } }
.w-product-details-review-wrapper-2 .w-product-details-review-item-wrapper-2 { padding-bottom: 80px; 
border-bottom: 1px solid #E6E7E8; }
.w-product-details-review-wrapper-2 .w-product-details-review-avater-title { display: block; margin-bottom: 2px; }
.w-product-details-review-wrapper-2 .w-product-details-review-avater-meta { padding-left: 0; }
.w-product-details-review-wrapper-2 .w-product-details-review-avater-meta::after { display: none; }
.w-product-details-review-wrapper-2 .w-product-details-review-avater-rating { margin-bottom: 9px; }
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-product-details-review-wrapper-2 .w-product-details-review-avater-rating { margin-top: 20px; } }
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-product-details-review-wrapper-2 .w-product-details-review-input-wrapper { margin-bottom: -11px; } }
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-product-details-review-wrapper-2 .w-product-details-review-input-box { margin-bottom: 29px; } }
.w-product-details-review-wrapper-2 .w-product-details-review-form-title { font-size: 34px; font-weight: 500; }
.w-product-details-review-wrapper-title-2 { font-size: 24px; font-weight: 500; margin-bottom: 33px; }
.w-product-details-review-item-2:not(:last-child) { margin-bottom: 55px; }

/*** Stilizare WIDGETS ***************************/
.w-shop-sidebar-right { margin-right: 0; margin-left: 10px; }
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-shop-sidebar-right { margin-top: 60px; } }
.w-shop-widget-title {font-weight: 500; font-size: 18px; border-bottom: 1px solid #EEEEEE; padding-bottom: 5px; margin-bottom: 25px; }
.w-shop-widget-title.no-border { border: 0; padding-bottom: 0; margin-bottom: 14px; }
.w-shop-widget-filter .ui-widget.ui-widget-content { height: 3px; background-color: #EDEDED; border: 0; }
.w-shop-widget-filter .ui-slider-horizontal .ui-slider-range { background-color: var(--thm-theme-primary); }
.w-shop-widget-filter .ui-slider .ui-slider-handle { top: -7px; width: 5px; height: 17px; border: 0; padding: 0; margin: 0;
border-radius: 0; background-color: var(--thm-theme-primary); }
.w-shop-widget-filter-info .input-range input { width: auto; height: auto; background-color: transparent; color: var(--thm-common-black);
padding: 0; border: 0; font-weight: 500; font-size: 14px; }
.w-shop-widget-filter-info .w-shop-widget-filter-btn { font-weight: 400; font-size: 14px; color: var(--thm-common-black);
background-color: #F5F5F5; padding: 2px 21px; }
.w-shop-widget-filter-info .w-shop-widget-filter-btn:hover { color: var(--thm-common-white); background-color: var(--thm-common-black); }
.w-shop-widget-checkbox ul li { list-style: none; }
.w-shop-widget-checkbox ul li:not(:last-child) { margin-bottom: 4px; }
.w-shop-widget-checkbox ul li input { display: none; }
.w-shop-widget-checkbox ul li input .single-widget-category input:checked + label::after { opacity: 1; visibility: visible; }
.w-shop-widget-checkbox ul li input:checked ~ label::after { background-color: var(--thm-theme-primary); border-color: var(--thm-theme-primary); }
.w-shop-widget-checkbox ul li input:checked ~ label::before { visibility: visible; opacity: 1; }
.w-shop-widget-checkbox ul li label { font-size: 16px; color: #55585B; position: relative; padding-left: 26px; }
.w-shop-widget-checkbox ul li label::after { position: absolute; content: ""; top: 5px; left: 0; width: 16px; height: 16px; line-height: 12px;
text-align: center; border: 2px solid #DADADA; z-index: -1; -webkit-transition: all 0.2s 0s ease-out; -moz-transition: all 0.2s 0s ease-out;
-ms-transition: all 0.2s 0s ease-out; -o-transition: all 0.2s 0s ease-out; transition: all 0.2s 0s ease-out; }
.w-shop-widget-checkbox ul li label::before { position: absolute; content: url("../images/icons/check.svg"); top: 6px; left: 0;
width: 16px; height: 16px; line-height: 12px; text-align: center; visibility: hidden; opacity: 0; color: var(--thm-common-white);
-webkit-transition: all 0.2s 0s ease-out; -moz-transition: all 0.2s 0s ease-out; -ms-transition: all 0.2s 0s ease-out;
-o-transition: all 0.2s 0s ease-out; transition: all 0.2s 0s ease-out; }
.w-shop-widget-checkbox ul li label:hover { cursor: pointer; }
.w-shop-widget-categories { height: 288px; overflow-y: scroll; overflow-y: scroll; overscroll-behavior-y: contain;
scrollbar-width: thin; padding-right: 10px; }
.w-shop-widget-categories ul li { list-style: none; width: 100%; }
.w-shop-widget-categories ul li:not(:last-child) { margin-bottom: 10px; }
.w-shop-widget-categories ul li a { font-weight: 400; font-size: 15px; color: var(--thm-text-body); position: relative;
padding-left: 16px; display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex;
align-items: center; justify-content: space-between; width: 100%; }
.w-shop-widget-categories ul li a::after { position: absolute; content: ""; top: 10px; left: 0; width: 6px; height: 6px;
text-align: center; background-color: #E7E7E7; border-radius: 50%; }
.w-shop-widget-categories ul li a:hover { color: var(--thm-theme-primary); }
.w-shop-widget-categories ul li a:hover::after { background-color: var(--thm-theme-primary); }
.w-shop-widget-categories ul li a:hover span { background-color: var(--thm-theme-primary); border-color: var(--thm-theme-primary);
color: var(--thm-common-white); }
.w-shop-widget-categories ul li a span { font-weight: 500; font-size: 12px; line-height: 1; border: 1px solid #EAEAEA;
border-radius: 8px; padding: 5px 6px 3px; }
.w-shop-widget-checkbox-circle { position: relative; }
.w-shop-widget-checkbox-circle-list ul li { list-style: none; display: -webkit-box; display: -moz-box; display: -ms-flexbox;
display: -webkit-flex; display: flex; align-items: center; justify-content: space-between; width: 100%; }
.w-shop-widget-checkbox-circle-list ul li:not(:last-child) { margin-bottom: 5px; }
.w-shop-widget-checkbox-circle-list ul li:hover .w-shop-widget-checkbox-circle-number { background-color: var(--thm-theme-primary);
border-color: var(--thm-theme-primary); color: var(--thm-common-white); }
.w-shop-widget-checkbox-circle-number { font-weight: 500; font-size: 12px; line-height: 1; border: 1px solid #EAEAEA;
 border-radius: 8px; padding: 5px 6px 3px; }
.w-shop-widget-checkbox-circle .w-shop-widget-checkbox-circle-self { position: absolute; content: ""; top: 4px; left: 0; width: 18px;
height: 18px; line-height: 18px; text-align: center; z-index: -1; border-radius: 50%; -webkit-transition: all 0.2s 0s ease-out;
-moz-transition: all 0.2s 0s ease-out; -ms-transition: all 0.2s 0s ease-out; -o-transition: all 0.2s 0s ease-out;
transition: all 0.2s 0s ease-out; }
.w-shop-widget-checkbox-circle input { display: none; }
.w-shop-widget-checkbox-circle input .single-widget-category input:checked + label::after { opacity: 1; visibility: visible; }
.w-shop-widget-checkbox-circle input:checked ~ label::before { visibility: visible; opacity: 1; }
.w-shop-widget-checkbox-circle label { font-size: 16px; color: #55585B; position: relative; padding-left: 26px; }
.w-shop-widget-checkbox-circle label::before { position: absolute; content: url("../images/icons/check-2.svg"); top: 3px;
left: 0; width: 18px; height: 18px; line-height: 18px; text-align: center; visibility: hidden; opacity: 0; 
color: var(--thm-common-white); -webkit-transition: all 0.1s 0s ease-out; -moz-transition: all 0.1s 0s ease-out;
-ms-transition: all 0.1s 0s ease-out; -o-transition: all 0.1s 0s ease-out; transition: all 0.1s 0s ease-out; }
.w-shop-widget-checkbox-circle label:hover { cursor: pointer; }
.w-shop-widget-product-item:not(:last-child) { margin-bottom: 20px; }
.w-shop-widget-product-rating { display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex;
display: flex; align-items: center; margin-right: 4px; }
.w-shop-widget-product-rating span { font-size: 12px; color: #FFB21D; margin-right: 1px; }
.w-shop-widget-product-rating-number span { font-weight: 500; font-size: 12px; color: #818487; }
.w-shop-widget-product-thumb { flex: 0 0 auto; }
.w-shop-widget-product-thumb img { width: 70px; height: 70px; object-fit: cover; margin-right: 14px; }
.w-shop-widget-product-title { font-weight: 500; font-size: 16px; margin-bottom: 0; }
.w-shop-widget-product-price { font-size: 14px; color: #55585B; }
.w-shop-widget-brand { margin-right: 40px; }
.w-shop-widget-brand-item { width: 50%; flex: 0 0 50%; margin-bottom: 30px; }


/*** Style MAGAZIN *************************/
.w-shop-top { position: relative; }
.w-shop-top-select .nice-select { background-color: #F9F9F9; border: 1px solid rgba(1, 15, 28, 0.1); border-radius: 0;
font-size: 14px; color: var(--thm-common-black); height: 40px; line-height: 38px; padding: 0 25px; min-width: 204px; float: none; }
@media (max-width: 575px) { .w-shop-top-select .nice-select { max-width: 280px; } }
.w-shop-top-select .nice-select::after { right: 20px; color: #767A7D; }
.w-shop-top-select .nice-select.open .list { -webkit-transform: scale(1) translateY(0px);
-moz-transform: scale(1) translateY(0px); -ms-transform: scale(1) translateY(0px); -o-transform: scale(1) translateY(0px);
transform: scale(1) translateY(0px); }
.w-shop-top-select .nice-select .list { margin-top: 0; border-radius: 0; transform-origin: center center;
-webkit-transform: scale(0.9) translateY(0px); -moz-transform: scale(0.9) translateY(0px); -ms-transform: scale(0.9) translateY(0px);
-o-transform: scale(0.9) translateY(0px); transform: scale(0.9) translateY(0px); width: 100%; padding: 10px 0; }
.w-shop-top-select .nice-select .list .option { line-height: 1.2; min-height: inherit; padding-top: 5px; padding-bottom: 5px; }
.w-shop-top-filter { margin-left: 16px; }
@media (max-width: 575px) {.w-shop-top-filter { margin-left: 0; margin-top: 15px;} }
.w-shop-top-result p { font-weight: 400; font-size: 16px; color: #818487; margin-bottom: 0; }
.w-shop-top-tab { margin-right: 22px; }
@media (max-width: 575px) { .w-shop-top-tab { margin-right: 10px; } }
.w-shop-top-tab .nav-tabs .nav-item .nav-link { display: inline-block; width: 40px; height: 40px; line-height: 38px;
text-align: center; font-size: 18px; color: #818487; border: 1px solid rgba(1, 15, 28, 0.1); border-radius: 0; margin-right: 6px; }
.w-shop-top-tab .nav-tabs .nav-item .nav-link.active { color: var(--thm-common-black); border-color: var(--thm-common-black); }
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-shop-top-right { margin-top: 30px; } }
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-shop-top-right:not(.w-shop-top-right-2) { margin-top: 30px; } }
.w-shop-main-wrapper { position: relative; }
.w-shop-full-width-padding { padding-left: 80px; padding-right: 80px; }
@media only screen and (min-width: 992px) and (max-width: 1199px) {
.w-shop-full-width-padding { padding-left: 40px; padding-right: 40px; } }
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-shop-full-width-padding { padding-left: 0; padding-right: 0; } }
.w-shop-item-primary .w-product-tag-2 a:hover, .w-shop-item-primary .w-product-title-2 a:hover { color: var(--thm-theme-primary); }
.w-shop-item-primary .w-product-tag-2 a::after { background-color: var(--thm-theme-primary); }
@media (min-width: 1400px) { .container-shop { max-width: 1630px; } }
.btn-loadmore-text { display: none; font-size: 16px; text-align: center; }

/*** Styles FILTRARE produse ************************/
.w-filter-offcanvas-area { position: fixed; left: 0; top: 0; width: 340px; height: 100%;
-webkit-transform: translateX(calc(-100% - 80px)); -moz-transform: translateX(calc(-100% - 80px));
-ms-transform: translateX(calc(-100% - 80px)); -o-transform: translateX(calc(-100% - 80px));
transform: translateX(calc(-100% - 80px)); background: var(--thm-common-white) none repeat scroll 0 0;
-webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86); -moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
-ms-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86); -o-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86); z-index: 99999; overflow-y: scroll; overscroll-behavior-y: contain;
scrollbar-width: none; }
.w-filter-offcanvas-area::-webkit-scrollbar { display: none; /* for Chrome, Safari, and Opera */ }
.w-filter-offcanvas-area.offcanvas-opened { -webkit-transform: translateX(0); -moz-transform: translateX(0);
-ms-transform: translateX(0); -o-transform: translateX(0); transform: translateX(0); opacity: 1; }
@media (max-width: 380px) { .w-filter-offcanvas-area { width: 100%; } }
.w-filter-offcanvas-right { -webkit-transform: translateX(calc(100% + 80px)); -moz-transform: translateX(calc(100% + 80px));
-ms-transform: translateX(calc(100% + 80px)); -o-transform: translateX(calc(100% + 80px)); transform: translateX(calc(100% + 80px));
left: auto; right: 0; }
.w-filter-offcanvas-wrapper { position: relative; padding: 120px 30px 35px; z-index: 1; min-height: 100%; }
.w-filter-offcanvas-close-btn { background: #151515; padding: 25px 30px; font-size: 18px; color: rgba(255, 255, 255, 0.7);
position: absolute; top: 0; left: 0; width: 100%; z-index: 1; }
.w-filter-offcanvas-close-btn:hover { color: var(--thm-common-white); }
.w-filter-dropdown-wrapper { position: absolute; top: 100%; left: 0; right: 0; width: 100%; z-index: 11;
border: 1px solid rgba(85, 88, 91, 0.06); box-shadow: 0px 40px 60px rgba(1, 15, 28, 0.1); background-color: var(--thm-common-white);
padding: 35px 40px 0; padding-right: 75px; visibility: hidden; opacity: 0; transform-origin: top; -webkit-transition: all 0.2s 0s ease-out;
-moz-transition: all 0.2s 0s ease-out; -ms-transition: all 0.2s 0s ease-out; -o-transition: all 0.2s 0s ease-out;
transition: all 0.2s 0s ease-out; -webkit-transform: perspective(300px) rotateX(-18deg); -moz-transform: perspective(300px) rotateX(-18deg);
-ms-transform: perspective(300px) rotateX(-18deg); -o-transform: perspective(300px) rotateX(-18deg); transform: perspective(300px) rotateX(-18deg); }
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-filter-dropdown-wrapper { padding: 25px 20px 0; } }
.w-filter-dropdown-wrapper.filter-dropdown-opened { visibility: visible; opacity: 1;
-webkit-transform: perspective(300px) rotateX(0deg); -moz-transform: perspective(300px) rotateX(0deg);
  -ms-transform: perspective(300px) rotateX(0deg); -o-transform: perspective(300px) rotateX(0deg);
  transform: perspective(300px) rotateX(0deg); }
.w-filter-dropdown-wrapper .w-shop-widget { margin-right: 25px; }
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-filter-dropdown-wrapper .w-shop-widget { margin-right: 0; } }


/*** Stiluri ADD TO COS ************************/
.w-product-quantity { width: 100px; position: relative; border-radius: 20px; }
.w-cart-plus, .w-cart-minus { display: inline-block; text-align: center; font-size: 16px; color: var(--thm-common-black);
position: absolute; top: 50%; left: 16px; -webkit-transform: translateY(-50%); -moz-transform: translateY(-50%);
-ms-transform: translateY(-50%); -o-transform: translateY(-50%); transform: translateY(-50%); }
.w-cart-plus svg, .w-cart-minus svg { -webkit-transform: translateY(-2px); -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px); -o-transform: translateY(-2px); transform: translateY(-2px); }
.w-cart-plus:hover, .w-cart-minus:hover { cursor: pointer; color: var(--thm-theme-1); }
.w-cart-plus.w-cart-plus, .w-cart-minus.w-cart-plus { left: auto; right: 16px; }
.w-cart-plus.w-cart-plus::after, .w-cart-minus.w-cart-plus::after { left: 0; right: auto; }
.w-cart-input[type=text] { height: 34px; text-align: center; font-size: 14px; border: 1px solid #DADCE0;
  background-color: var(--thm-common-white); padding: 0 30px; border-radius: 20px; }
.w-cart-input[type=text]:focus { outline: none;}

/*** Stilizare COSUL MEU ****************************/
.w-cart-header-product { padding-left: 30px !important; }
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-cart-list { overflow-x: scroll; } }
.w-cart-list .table > :not(caption) > * > * { padding: 20px 0; box-shadow: none; vertical-align: middle; }
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-cart-list table { width: 840px; } }
.w-cart-list thead { background-color: #F1F3F4; }
.w-cart-list thead th { font-weight: 500; font-size: 14px; color: var(--thm-common-black); border: 0 !important;
padding-top: 9px !important; padding-bottom: 9px !important; }
.w-cart-list tr td { border-color: #E0E2E3; }
.w-cart-list tr td .w-cart-action-btn { font-weight: 400; font-size: 14px; color: #818487; }
.w-cart-list tr td .w-cart-action-btn:hover { color: #FF1826; }
.w-cart-list tr td.w-cart-add-to-cart .w-btn { border-radius: 0; }
.w-cart-list tbody tr:first-child td { padding-top: 30px !important; }
.w-cart-img { width: 78px; margin-right: 20px; }
.w-cart-img img { width: 78px; height: 100px; object-fit: cover; }
.w-cart-title a { margin-left: 20px; font-weight: 400; font-size: 16px; color: var(--thm-common-black); }
.w-cart-title a:hover { color: var(--thm-theme-primary); }
.w-cart-price { width: 126px; }
.w-cart-price span { font-size: 16px; color: var(--thm-common-black); }
.w-cart-quantity { width: 180px; }
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-cart-coupon { margin-bottom: 20px; } }
.w-cart-coupon-input-box label { font-size: 14px; color: var(--thm-common-black); margin-bottom: 7px; }
.w-cart-coupon-input input { background: #FFFFFF; border: 1px solid #D6D9DC; height: 46px; line-height: 46px; margin-right: 4px;
max-width: 282px; }
.w-cart-coupon-input input::-webkit-input-placeholder { color: #818487; }
.w-cart-coupon-input input::-moz-placeholder { color: #818487;}
.w-cart-coupon-input input:-moz-placeholder { color: #818487; }
.w-cart-coupon-input input:-ms-input-placeholder { color: #818487; }
.w-cart-coupon-input input::placeholder { color: #818487; }
.w-cart-coupon-input button { font-weight: 500; font-size: 16px; color: var(--thm-common-white);
background-color: var(--thm-common-black); padding: 10px 30px; }
.w-cart-coupon-input button:hover { color: var(--thm-common-white); background-color: var(--thm-theme-primary); }
.w-cart-update-btn { font-weight: 500; font-size: 16px; color: var(--thm-common-black); background-color: var(--thm-common-white);
padding: 9px 29px; border: 1px solid rgba(1, 15, 28, 0.1); }
.w-cart-update-btn:hover { background-color: var(--thm-theme-primary); border-color: var(--thm-theme-primary);
color: var(--thm-common-white); }
.w-cart-checkout-wrapper { background: var(--thm-common-white); box-shadow: 0px 30px 70px rgba(1, 15, 28, 0.1);
padding: 36px 24px 28px; margin-left: -24px; }
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-cart-checkout-wrapper { margin-top: 50px; margin-left: 0; } }
.w-cart-checkout-top { padding-bottom: 13px; margin-bottom: 19px; border-bottom: 1px solid #E0E2E3; }
.w-cart-checkout-top span { font-size: 20px; color: var(--thm-common-black); font-weight: 500; }
.w-cart-checkout-shipping { padding-bottom: 16px; border-bottom: 1px solid #E0E2E3; margin-bottom: 15px; }
.w-cart-checkout-shipping-title { font-weight: 500; font-size: 15px; margin-bottom: 7px; }
.w-cart-checkout-shipping-option:not(:last-child) { margin-bottom: 4px; }
.w-cart-checkout-shipping-option input { display: none; }
.w-cart-checkout-shipping-option input:checked + label::after { border-color: var(--thm-theme-primary); }
.w-cart-checkout-shipping-option input:checked + label::before { opacity: 1; visibility: visible; }
.w-cart-checkout-shipping-option label { font-weight: 400; font-size: 14px; color: #161C2D; position: relative; padding-left: 25px; }
.w-cart-checkout-shipping-option label:hover { cursor: pointer; }
.w-cart-checkout-shipping-option label span { color: var(--thm-theme-primary); }
.w-cart-checkout-shipping-option label::after { position: absolute; content: ""; left: 0; top: 5px; width: 16px; height: 16px;
border-radius: 50%; border: 1px solid #BCBCBC; }
.w-cart-checkout-shipping-option label::before { position: absolute; content: ""; left: 4px; top: 9px; width: 8px; height: 8px;
border-radius: 50%; background-color: var(--thm-theme-primary); visibility: hidden; opacity: 0; }
.w-cart-checkout-total { margin-bottom: 25px; }
.w-cart-checkout-total span { font-weight: 500; font-size: 18px; color: var(--thm-common-black); }
.w-cart-checkout-btn { font-size: 16px; font-weight: 500; color: var(--thm-common-white); background-color: var(--thm-common-black);
display: inline-block; padding: 10px 30px; text-align: center; }
.w-cart-checkout-btn:hover { background-color: var(--thm-theme-primary); color: var(--thm-common-white); }

/** COMENZI PRODUSE *******************************/
.w-order-details { padding: 70px 100px 55px; }
@media only screen and (min-width: 1200px) and (max-width: 1399px) { .w-order-details { padding: 70px 70px 55px; } }
@media only screen and (min-width: 992px) and (max-width: 1199px) { .w-order-details { padding: 70px 30px 55px; } }
@media only screen and (min-width: 576px) and (max-width: 767px) {.w-order-details { padding: 70px 50px 55px; } }
@media (max-width: 575px) { .w-order-details { padding: 40px 30px 45px; } }
.w-order-details-icon { margin-bottom: 22px; }
.w-order-details-icon span { display: inline-block; width: 120px; height: 120px; line-height: 118px; text-align: center;
font-size: 55px; color: var(--thm-common-white); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 50%; }
.w-order-details-title { font-size: 30px; font-weight: 600; color: var(--thm-common-white); margin-bottom: 7px; }
.w-order-details-content p { font-size: 16px; color: var(--thm-common-white); line-height: 1.38; }
.w-order-details-item { margin-bottom: 38px; }
.w-order-details-item-wrapper .row [class*=col-]:nth-child(2n) .w-order-details-item { padding-left: 40px; }
@media (max-width: 575px) { .w-order-details-item-wrapper .row [class*=col-]:nth-child(2n) .w-order-details-item {
padding-left: 0; } }
.w-order-details-item h4 { font-size: 18px; color: var(--thm-common-white); margin-bottom: 0; font-weight: 400; }
.w-order-details-item p { font-weight: 700; font-size: 18px; color: var(--thm-common-white); margin-bottom: 0; }
.w-order-info-wrapper { padding: 42px 50px; }
@media only screen and (min-width: 992px) and (max-width: 1199px) { .w-order-info-wrapper { padding: 42px 40px; } }
@media (max-width: 575px) { .w-order-info-wrapper { padding: 42px 30px; } }
.w-order-info-title { font-size: 26px; font-weight: 600; margin-bottom: 40px; }
.w-order-info-list ul li { list-style: none; padding: 15px 0; display: -webkit-box; display: -moz-box; display: -ms-flexbox;
display: -webkit-flex; display: flex; align-items: center; justify-content: space-between; }
.w-order-info-list ul li:not(:last-child) { border-bottom: 1px solid #E0E2E3; }
.w-order-info-list ul li span { font-size: 15px; color: var(--thm-common-black); }
.w-order-info-list ul li.w-order-info-list-header { padding-top: 0; padding-bottom: 12px; }
.w-order-info-list ul li.w-order-info-list-header h4 { font-size: 16px; font-weight: 500; margin-bottom: 0; }
.w-order-info-list ul li.w-order-info-list-desc p { font-size: 15px; margin-bottom: 0; }
.w-order-info-list ul li.w-order-info-list-desc p span { font-size: 15px; font-weight: 500; }
.w-order-info-list ul li.w-order-info-list-subtotal span:last-child { color: var(--thm-theme-primary); }
.w-order-info-list ul li.w-order-info-list-shipping span input { display: none; }
.w-order-info-list ul li.w-order-info-list-shipping span input:checked ~ label::after { border-color: var(--thm-theme-primary); }
.w-order-info-list ul li.w-order-info-list-shipping span input:checked ~ label::before { opacity: 1; visibility: visible; }
.w-order-info-list ul li.w-order-info-list-shipping span label { font-size: 14px; position: relative; padding-right: 27px; }
.w-order-info-list ul li.w-order-info-list-shipping span label span { color: var(--thm-theme-primary); }
.w-order-info-list ul li.w-order-info-list-shipping span label:hover { cursor: pointer; }
.w-order-info-list ul li.w-order-info-list-shipping span label::after { position: absolute; content: ""; right: 0; top: 5px; 
width: 16px; height: 16px; border-radius: 50%; border: 1px solid #BCBCBC; -webkit-transition: all 0.2s 0s ease-out;
-moz-transition: all 0.2s 0s ease-out; -ms-transition: all 0.2s 0s ease-out; -o-transition: all 0.2s 0s ease-out; 
transition: all 0.2s 0s ease-out; }
.w-order-info-list ul li.w-order-info-list-shipping span label::before { position: absolute; content: ""; right: 4px; top: 9px;
width: 8px; height: 8px; border-radius: 50%; background-color: var(--thm-theme-primary); visibility: hidden; opacity: 0;
-webkit-transition: all 0.2s 0s ease-out; -moz-transition: all 0.2s 0s ease-out; -ms-transition: all 0.2s 0s ease-out;
  -o-transition: all 0.2s 0s ease-out; transition: all 0.2s 0s ease-out; }
.w-order-info-list ul li.w-order-info-list-total { padding: 14px 0; }
.w-order-info-list ul li.w-order-info-list-total span { font-size: 16px; font-weight: 500; }
.w-order-inner { background-color: var(--thm-common-white); box-shadow: 0px 30px 70px rgba(1, 15, 28, 0.1); }

/*** FINALIZARE COMANDA ***********************/
.w-checkout-verify-item { margin-bottom: 40px; }
.w-checkout-verify-item:not(:last-child) { margin-bottom: 14px; }
.w-checkout-verify-reveal { font-size: 14px; color: var(--thm-common-black); margin-bottom: 0;
display: inline-block; border: 1px dashed #AAB0B2; padding: 8px 26px; width: 100%; }
.w-checkout-verify-reveal button { color: var(--thm-theme-primary); position: relative; }
.w-checkout-verify-reveal button::after { position: absolute; content: ""; left: 0; bottom: 4px;
width: 100%; height: 1px; background-color: var(--thm-theme-primary); }
.w-checkout-btn { display: inline-block; font-size: 16px; font-weight: 500; color: var(--thm-common-white);
background-color: var(--thm-theme-primary); height: 50px; line-height: 50px; padding: 0 30px; text-align: center; }
.w-checkout-btn:hover { background-color: var(--thm-common-black); color: var(--thm-common-white); }
.w-checkout-input { margin-bottom: 20px; }
.w-checkout-input label { font-weight: 500; color: var(--thm-common-black); }
.w-checkout-input label span { color: red; }
.w-checkout-input input, .w-checkout-input textarea { width: 100%; background: #FFFFFF; border: 1px solid #D5D8DB; 
color: var(--thm-common-black); height: 50px; }
.w-checkout-input input:focus, .w-checkout-input textarea:focus { border-color: var(--thm-common-black); }
.w-checkout-input textarea { height: 200px; resize: none; }
.w-checkout-input .nice-select { height: 50px; line-height: 48px; border-radius: 0; border: 1px solid #D5D8DB; 
color: var(--thm-common-black); float: none; padding: 0 26px; }
.w-checkout-input .nice-select::after { right: 26px; }
.w-checkout-input .nice-select.open .list { -webkit-transform: scale(1) translateY(0px); 
-moz-transform: scale(1) translateY(0px); -ms-transform: scale(1) translateY(0px); -o-transform: scale(1) translateY(0px);
  transform: scale(1) translateY(0px); }
.w-checkout-input .nice-select .list { margin-top: 0; border-radius: 0; transform-origin: center center; 
-webkit-transform: scale(0.9) translateY(0px); -moz-transform: scale(0.9) translateY(0px); 
-ms-transform: scale(0.9) translateY(0px); -o-transform: scale(0.9) translateY(0px); transform: scale(0.9) translateY(0px);
width: 100%; padding: 12px 0; }
.w-checkout-input .nice-select .list .option { line-height: 1.2; min-height: inherit; padding-top: 5px; padding-bottom: 5px; }
.w-checkout-input .nice-select .list .option:hover { color: var(--thm-theme-primary); }
.w-checkout-option { margin-bottom: 4px; }
.w-checkout-option-wrapper { margin-top: 10px; margin-bottom: 17px; }
.w-checkout-option input { display: none; }
.w-checkout-option input:checked ~ label::after { background-color: var(--thm-theme-primary);
  border-color: var(--thm-theme-primary); }
.w-checkout-option input:checked ~ label::before { visibility: visible; opacity: 1; }
.w-checkout-option label { font-size: 15px; color: #55585B; position: relative; padding-left: 26px; z-index: 1; }
.w-checkout-option label::after { position: absolute; content: ""; top: 4px; left: 0; width: 18px; height: 18px; 
line-height: 16px; text-align: center; border: 1px solid #C3C7C9; z-index: -1; -webkit-transition: all 0.2s 0s ease-out;
  -moz-transition: all 0.2s 0s ease-out; -ms-transition: all 0.2s 0s ease-out; -o-transition: all 0.2s 0s ease-out;
  transition: all 0.2s 0s ease-out; }
.w-checkout-option label::before { position: absolute; content: url("../images/product/icons/check.svg");
top: 4px; left: 0; width: 18px; height: 18px; line-height: 16px; text-align: center; visibility: hidden;
opacity: 0; color: var(--thm-common-white); -webkit-transition: all 0.2s 0s ease-out; -moz-transition: all 0.2s 0s ease-out;
-ms-transition: all 0.2s 0s ease-out; -o-transition: all 0.2s 0s ease-out; transition: all 0.2s 0s ease-out; }
.w-checkout-option label a:hover { color: var(--thm-theme-primary); }
.w-checkout-option label:hover { cursor: pointer; }
.w-checkout-bill-area { padding: 45px 40px 24px; background-color: var(--thm-common-white); }
@media (max-width: 575px) { .w-checkout-bill-area { padding: 45px 25px 24px; } }
.w-checkout-bill-title { font-weight: 600; font-size: 26px; margin-bottom: 35px; }
.w-checkout-place { padding: 44px 50px 50px; }
@media only screen and (min-width: 992px) and (max-width: 1199px) { .w-checkout-place { padding: 35px 30px; } }
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-checkout-place { margin-top: 50px; } }
.w-checkout-place-title { font-size: 26px; font-weight: 600; margin-right: 37px; margin-bottom: 30px; }
.w-checkout-payment { padding-bottom: 26px; margin-bottom: 24px; border-bottom: 1px solid #E0E2E3; }
.w-checkout-payment-item:not(:last-child) { margin-bottom: 10px; }
.w-checkout-payment-item.paypal-payment label { display: -webkit-box; display: -moz-box; display: -ms-flexbox; 
display: -webkit-flex; display: flex; align-items: center; flex-wrap: wrap; }
.w-checkout-payment-item input { display: none; }
.w-checkout-payment-item input:checked ~ label::after { border-color: var(--thm-theme-primary); }
.w-checkout-payment-item input:checked ~ label::before { opacity: 1; visibility: visible; }
.w-checkout-payment-item label { font-size: 14px; position: relative; padding-left: 27px; font-weight: 500; 
color: var(--thm-common-black); }
.w-checkout-payment-item label:hover { cursor: pointer; }
.w-checkout-payment-item label::after { position: absolute; content: ""; left: 0; top: 5px; width: 16px; height: 16px;
border-radius: 50%; border: 1px solid #BCBCBC; -webkit-transition: all 0.2s 0s ease-out; -moz-transition: all 0.2s 0s ease-out;
  -ms-transition: all 0.2s 0s ease-out; -o-transition: all 0.2s 0s ease-out; transition: all 0.2s 0s ease-out; }
.w-checkout-payment-item label::before { position: absolute; content: ""; left: 3px; top: 8px; width: 10px; height: 10px;
border-radius: 50%; background-color: var(--thm-theme-primary); visibility: hidden; opacity: 0; -webkit-transition: all 0.2s 0s ease-out;
-moz-transition: all 0.2s 0s ease-out; -ms-transition: all 0.2s 0s ease-out; -o-transition: all 0.2s 0s ease-out; 
transition: all 0.2s 0s ease-out; }
.w-checkout-payment-item label img { margin-left: 14px; -webkit-transform: translateY(-2px); -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px); -o-transform: translateY(-2px); transform: translateY(-2px); }
.w-checkout-payment-item label a { margin-left: 20px; position: relative; }
.w-checkout-payment-item label a::after { position: absolute; content: ""; left: 0; bottom: 3px; width: 100%; height: 1px;
background-color: var(--thm-common-black); }
.w-checkout-payment-desc { position: relative; padding-top: 10px; display: none; }
.w-checkout-payment-desc::after { position: absolute; content: ""; left: 57px; top: 0; width: 16px; height: 16px; 
background-color: #F6F7F9; -webkit-transform: translateY(3px) rotate(45deg); -moz-transform: translateY(3px) rotate(45deg);
-ms-transform: translateY(3px) rotate(45deg); -o-transform: translateY(3px) rotate(45deg); transform: translateY(3px) rotate(45deg); }
.w-checkout-payment-desc p { background-color: #F6F7F9; padding: 19px 30px; margin-left: 27px; font-size: 14px;
line-height: 1.57; color: #55585B; margin-bottom: 0; }
.w-checkout-agree { margin-bottom: 24px; }
.w-return-customer { display: none; margin-top: 14px; padding: 40px 40px; background-color: var(--thm-common-white); }
.w-return-customer-input { margin-bottom: 20px; }
.w-return-customer-input label { font-weight: 500; color: var(--thm-common-black); }
.w-return-customer-input label span { color: red;}
.w-return-customer-input input { width: 100%; background: #FFFFFF; border: 1px solid #D5D8DB; color: var(--thm-common-black);
height: 50px; }
.w-return-customer-remeber input { display: none; }
.w-return-customer-remeber input:checked ~ label::after { background-color: var(--thm-theme-primary);
border-color: var(--thm-theme-primary); }
.w-return-customer-remeber input:checked ~ label::before { visibility: visible; opacity: 1; }
.w-return-customer-remeber label { font-size: 15px; color: #55585B; position: relative; padding-left: 26px; z-index: 1; }
.w-return-customer-remeber label::after { position: absolute; content: ""; top: 4px; left: 0; width: 18px; height: 18px;
line-height: 16px; text-align: center; border: 1px solid #C3C7C9; z-index: -1; -webkit-transition: all 0.2s 0s ease-out;
-moz-transition: all 0.2s 0s ease-out; -ms-transition: all 0.2s 0s ease-out; -o-transition: all 0.2s 0s ease-out;
transition: all 0.2s 0s ease-out; }
.w-return-customer-remeber label::before { position: absolute; content: url("../images/icons/check.svg"); top: 4px; left: 0;
width: 18px; height: 18px; line-height: 16px; text-align: center; visibility: hidden; opacity: 0; color: var(--thm-common-white);
-webkit-transition: all 0.2s 0s ease-out; -moz-transition: all 0.2s 0s ease-out; -ms-transition: all 0.2s 0s ease-out;
  -o-transition: all 0.2s 0s ease-out; transition: all 0.2s 0s ease-out; }
.w-return-customer-remeber label a:hover { color: var(--thm-theme-primary); }
.w-return-customer-remeber label:hover { cursor: pointer; }
.w-return-customer-forgot a { font-weight: 400; font-size: 15px; color: var(--thm-theme-primary); position: relative; display: inline-block; }
.w-return-customer-forgot a::after { position: absolute; content: ""; left: auto; right: 0; bottom: 4px; width: 0%; height: 1px;
  background-color: var(--thm-theme-primary); }
.w-return-customer-forgot a:hover::after { left: 0; right: auto; width: 100%; }


/*** CATEGORII PRODUSE ********************************/
.w-collection-item:hover .w-collection-thumb { -webkit-transform: scale(1.05); -moz-transform: scale(1.05);
  -ms-transform: scale(1.05); -o-transform: scale(1.05); transform: scale(1.05); }
.w-collection-height { min-height: 700px; }
@media only screen and (min-width: 768px) and (max-width: 991px) {
.w-collection-height { min-height: 500px; } }
@media only screen and (min-width: 576px) and (max-width: 767px) {
.w-collection-height { min-height: 600px; } }
@media (max-width: 575px) { .w-collection-height { min-height: 400px; } }
.w-collection-thumb { z-index: -1; }
.w-collection-thumb.has-overlay::after { position: absolute; content: ""; left: 0; 
width: 100%; height: 100%; background-color: rgba(1, 15, 28, 0.1); }
.w-collection-title { font-weight: 500; font-size: 50px; line-height: 1; margin-bottom: 34px; }
@media only screen and (min-width: 768px) and (max-width: 991px) { .w-collection-title { font-size: 35px; } }
@media (max-width: 575px) { .w-collection-title { font-size: 32px; } }
.w-collection-title a { background-image: linear-gradient(#010F1C, #010F1C), linear-gradient(#010F1C, #010F1C);
background-size: 0% 2px, 0 2px; background-position: 100% 100%, 0 80%; background-repeat: no-repeat;
transition: background-size 0.4s linear; }
.w-collection-title:hover a { background-size: 0 2px, 100% 2px; }
.w-collection-title-1 { font-weight: 600; font-size: 44px; line-height: 1; margin-bottom: 10px; text-transform: uppercase;
color: var(--thm-common-white); }
@media only screen and (min-width: 768px) and (max-width: 991px) {
.w-collection-title-1 { font-size: 35px; } }
@media (max-width: 575px) { .w-collection-title-1 { font-size: 30px; } }
.w-collection-title-1 a { background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
background-size: 0% 1px, 0 1px; background-position: 100% 100%, 0 80%; background-repeat: no-repeat;
  transition: background-size 0.4s linear; }
.w-collection-title-1:hover a { background-size: 0 1px, 100% 1px; }
.w-collection-content { position: absolute; top: 55px; left: 55px; right: 55px; word-wrap: break-word; }
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px) {
.w-collection-content { top: 35px; left: 30px; right: 30px; } }
.w-collection-content span { font-size: 16px; color: var(--thm-common-black); display: inline-block; margin-bottom: 9px; }
.w-collection-content-1 { position: absolute; bottom: 40px; left: 45px; right: 45px; word-wrap: break-word; }
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px) {
.w-collection-content-1 { bottom: 30px; left: 30px; right: 30px; } }
.w-collection-btn .w-btn { font-size: 14px; background-color: var(--thm-common-white); border-color: var(--thm-common-white);
color: var(--thm-common-black); padding: 6px 19px; }
.w-collection-btn .w-btn:hover { background-color: var(--thm-theme-brown); border-color: var(--thm-theme-brown); 
color: var(--thm-common-white); }
.w-collection-btn-1 .w-link-btn-line { color: var(--thm-common-white); letter-spacing: 0.3em; }
.w-collection-btn-1 .w-link-btn-line::after { background-color: var(--thm-common-white); }
.w-collection-offer-wrapper { padding-left: 33px; }
.w-collection-offer-wrapper p { font-size: 18px; line-height: 1.11; color: var(--thm-common-black); }
.w-collection-offer-wrapper p span { color: #0989FF; }
.w-collection-countdown .w-product-countdown { background: var(--thm-common-white);
border: 1px solid #DDE0E3; box-shadow: 0px 1px 2px rgba(1, 15, 28, 0.1); padding: 4px 14px; height: 50px; }
.w-collection-countdown .w-product-countdown:not(:last-child) { margin-right: 4px; }
.w-collection-countdown .w-product-countdown.has-second { width: 50px; height: 50px; }
.w-collection-countdown .w-product-countdown ul li { width: inherit; height: inherit; font-weight: 500;
font-size: 10px; line-height: 8px; text-align: center; text-transform: uppercase; color: var(--thm-text-2); border: none;
border-radius: 0; position: relative; }
.w-collection-countdown .w-product-countdown ul li:not(:last-child) { padding-right: 17px; margin-right: 9px; }
.w-collection-countdown .w-product-countdown ul li:not(:last-child)::after { position: absolute; content: ":";
top: 50%; right: 0; font-size: 14px; font-weight: 700; color: var(--thm-common-black); }
.w-collection-countdown .w-product-countdown ul li span { font-weight: 500; font-size: 22px; line-height: 14px;
color: var(--thm-common-black); margin-bottom: 4px; }
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
.w-collection-inner-4 { padding-left: 40px; padding-right: 40px; } }
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-collection-inner-4 { padding-left: 20px; padding-right: 20px;} }
@media (max-width: 575px) { .w-collection-inner-4 { padding-left: 0;padding-right: 0; } }
.w-collection-subtitle-4 {font-size: 14px;line-height: 1;letter-spacing: 0.2em; display: inline-block;
color: var(--thm-common-black); margin-bottom: 25px;}
.w-collection-thumb-banner-4 { margin-bottom: 22px;}
.w-collection-title-4 { font-weight: 500; font-size: 30px; margin-bottom: 3px; }
.w-collection-title-4 a:hover { color: var(--thm-theme-brown);}
.w-collection-side-text { position: absolute; right: 40px; top: 60px; }
@media only screen and (min-width: 992px) and (max-width: 1199px) { .w-collection-side-text { right: 10px; } }
@media only screen and (min-width: 576px) and (max-width: 767px) { .w-collection-side-text { right: 0; } }
.w-collection-thumb-wrapper-4 { height: 100%; }
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-collection-thumb-wrapper-4 { min-height: 600px; } }
.w-collection-thumb-info-4 { position: absolute; top: 55px; left: 60px; right: 60px; font-weight: 500;
font-size: 14px; line-height: 1; letter-spacing: 0.04em; color: var(--thm-common-white); display: inline-block; z-index: 1; }
@media (max-width: 575px) { .w-collection-thumb-info-4 { line-height: 1.3; left: 30px; top: 35px; right: 30px; } }
.w-collection-hotspot-1 { top: 49%; left: 28%; }
@media only screen and (min-width: 576px) and (max-width: 767px) {
.w-collection-hotspot-1 { top: 49%;  left: 11%; } }
.w-collection-hotspot-2 { bottom: 6%; right: 40%; }
.w-collection-hotspot-item {width: 44px; position: absolute;}
.w-collection-hotspot-item:hover .w-collection-hotspot-content {
visibility: visible;opacity: 1; -webkit-transform: translate(-37%, 55px); -moz-transform: translate(-37%, 55px);
-ms-transform: translate(-37%, 55px); -o-transform: translate(-37%, 55px); transform: translate(-37%, 55px); }
.w-collection-hotspot-item:hover .w-collection-hotspot-content.on-top {
-webkit-transform: translate(-37%, -110%); -moz-transform: translate(-37%, -110%); -ms-transform: translate(-37%, -110%);
-o-transform: translate(-37%, -110%); transform: translate(-37%, -110%); }
.w-collection-hotspot-content {
background-color: var(--thm-common-white); position: relative; min-width: 165px; padding: 15px 20px;
-webkit-transform: translate(-37%, 60px); -moz-transform: translate(-37%, 60px); -ms-transform: translate(-37%, 60px);
-o-transform: translate(-37%, 60px); transform: translate(-37%, 60px); transform-origin: top center; visibility: hidden;
opacity: 0; text-align: center; }
.w-collection-hotspot-content::after {
position: absolute; content: ""; left: 0; top: 0; width: 14px; height: 14px;
  background-color: var(--thm-common-white); top: 0; left: 50%; -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -moz-transform: translate(-50%, -50%) rotate(45deg); -ms-transform: translate(-50%, -50%) rotate(45deg);
  -o-transform: translate(-50%, -50%) rotate(45deg); transform: translate(-50%, -50%) rotate(45deg); }
.w-collection-hotspot-content p { line-height: 1.3; margin-bottom: 0; margin-top: 6px; }
.w-collection-hotspot-content.on-top { -webkit-transform: translate(-37%, -120%); -moz-transform: translate(-37%, -120%);
-ms-transform: translate(-37%, -120%); -o-transform: translate(-37%, -120%); transform: translate(-37%, -120%); }
.w-collection-hotspot-content.on-top::after { top: auto; bottom: -13px; }
.w-collection-hotspot-title { font-weight: 500; font-size: 16px; line-height: 1; text-align: center; margin-bottom: 0; }
.w-collection-btn-4 .w-link-btn-line-2:hover { color: var(--thm-theme-brown);}
.w-collection-btn-4 .w-link-btn-line-2:hover::after { background-color: var(--thm-theme-brown); }
.w-collection-btn-4 .w-link-btn-line-2:hover i { -webkit-transform: translateX(3px); -moz-transform: translateX(3px);
-ms-transform: translateX(3px); -o-transform: translateX(3px); transform: translateX(3px); }
.w-collection-btn-4 .w-link-btn-line-2:hover svg {
-webkit-transform: translateX(3px) translateY(-1px); -moz-transform: translateX(3px) translateY(-1px);
-ms-transform: translateX(3px) translateY(-1px); -o-transform: translateX(3px) translateY(-1px);
transform: translateX(3px) translateY(-1px); }

/*** Stilizare OFERTELE **********************************/
.w-deal-title { font-weight: 500; font-size: 60px; line-height: 1.17; margin-bottom: 35px; }
@media (max-width: 575px) { .w-deal-title { font-size: 45px; }}
.w-deal-title-pre { font-weight: 400; font-size: 18px; color: var(--thm-theme-green); position: relative; z-index: 1;
  display: inline-block; margin-bottom: 7px;}
.w-deal-title-pre svg { position: absolute; bottom: -8px; left: 26px; z-index: -1;}

/*** SLIDER BANER PRODUSE ***************************/
.w-product-side-banner { padding: 55px 10px 0; border-radius: 16px; margin-right: 56px; }
@media (max-width: 575px) { .w-product-side-banner { margin-right: 0; }}
.w-product-side-banner-title { font-weight: 500; font-size: 30px; line-height: 1.13; margin-bottom: 30px; }
.w-product-side-banner-subtitle { margin-bottom: 16px; }
.w-product-side-banner-btn { margin-bottom: 52px; }
.w-product-side-banner-thumb img {
  -webkit-transform: translateY(25px);
  -moz-transform: translateY(25px);
  -ms-transform: translateY(25px);
  -o-transform: translateY(25px);
  transform: translateY(25px);
}

/*** CUPOANE ********************/
.w-coupon-item { padding: 20px 20px; border: 1px solid var(--thm-border-primary); }
.w-coupon-item-left {flex: 0 0 68%;}
.w-coupon-item-right { flex: 0 0 32%;}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .w-coupon-item-right { padding-left: 3px; } }
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .w-coupon-item-right { padding-left: 0;  margin-top: 20px; } }
.w-coupon-thumb img { width: 120px; height: 120px; object-fit: cover; margin-right: 20px; }
.w-coupon-title { font-size: 17px; margin-bottom: 3px; font-weight: 500;}
@media (max-width: 575px) {  .w-coupon-content { margin-top: 20px;} }
.w-coupon-countdown ul li { list-style: none; font-size: 12px; color: var(--thm-common-black); display: inline-block;
  padding: 0 12px;position: relative; text-transform: uppercase; }
.w-coupon-countdown ul li:first-child { padding-left: 0;}
.w-coupon-countdown ul li span { display: block; line-height: 1; }
.w-coupon-countdown ul li:not(:last-child)::after { position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 17px; content: ""; background-color: #ebebeb; }
.w-coupon-offer { font-size: 18px; font-weight: 600; }
.w-coupon-offer span { color: #FF2400; margin-right: 3px; }
.w-coupon-status h4 { font-weight: 400; font-size: 14px;}
.w-coupon-status h4 span { color: #FF2400; display: inline-block; }
.w-coupon-status h4 span.active { color: green; }
.w-coupon-status:hover .w-coupon-info-tooltip { visibility: visible; opacity: 1; bottom: calc(100% + 12px);}
.w-coupon-status:hover .w-coupon-info-details span { color: #8E959B; }
.w-coupon-date span { display: inline-block; background-color: rgba(0, 128, 128, 0.1);
  border: 2px dashed rgba(0, 128, 128, 0.4); padding: 6px 30px; font-size: 15px; color: #008080; font-weight: 600;
  letter-spacing: 1px; }
.w-coupon-border { position: absolute; top: 0; bottom: 0; right: 35%; display: inline-block;  width: 2px;
  height: 100%; background-color: transparent; border-left: 2px dashed var(--thm-border-primary); z-index: 1; }
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.w-coupon-border { right: 20%;} }
.w-coupon-border::after, .w-coupon-border::before {
  position: absolute; content: ""; width: 24px; height: 24px; background-color: #fff; bottom: -13px; right: 50%;
  z-index: 1; border: 1px solid var(--thm-border-primary); transform: translateX(50%); border-top-left-radius: 50%;
  border-top-right-radius: 50%; border-bottom: 0; clip-path: polygon(0 0, 100% 0%, 100% 50%, 0 50%); }
.w-coupon-border::before { bottom: auto; top: -14px; transform: translateX(50%) scale(1, -1); }
.w-coupon-info-details { position: relative; }
.w-coupon-info-details span { color: #BCBFC2; margin-left: 7px; display: inline-block; }
.w-coupon-info-details span svg { width: 16px; height: 16px; -webkit-transform: translateY(-5px); -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px); -o-transform: translateY(-5px); transform: translateY(-5px); }
.w-coupon-info-details:hover span { color: #8E959B; }
.w-coupon-info-tooltip { position: absolute; bottom: calc(100% + 25px); right: -22px; min-width: 286px;
  background-color: var(--thm-common-white); padding: 13px 20px 15px; box-shadow: 0px 10px 30px rgba(4, 11, 17, 0.14);
  visibility: hidden; opacity: 0; z-index: 9;}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .w-coupon-info-tooltip { right: auto; left: -98px; }
}
@media (max-width: 575px) { .w-coupon-info-tooltip { right: auto;  left: -127px; }}
.w-coupon-info-tooltip::after {
  position: absolute; content: ""; right: 15px; bottom: 0; width: 18px; height: 18px;
  background-color: var(--thm-common-white);
  -webkit-transform: rotate(45deg) translateY(50%);
  -moz-transform: rotate(45deg) translateY(50%);
  -ms-transform: rotate(45deg) translateY(50%);
  -o-transform: rotate(45deg) translateY(50%);
  transform: rotate(45deg) translateY(50%); }
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .w-coupon-info-tooltip::after {  right: 157px; }
}
@media (max-width: 575px) {
  .w-coupon-info-tooltip::after { right: 128px; }
}
.w-coupon-info-tooltip p { font-size: 14px; line-height: 1.43; color: #525258; margin-bottom: 0; }
.w-coupon-info-tooltip p span { color: var(--thm-common-black) !important; font-weight: 500; margin-left: 0;}

.accordion-button { outline: 0 !important; box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important; }
.accordion-button:not(.collapsed) { background-color: var(--thm-theme-primary) !important; color: #fff !important; 
outline: 0 !important; box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important; }
.accordion-button:not(.collapsed)::after { border-color: #fff !important; color: #fff !important; }
.accordion-body, .accordion-body p { font-size: 14px !important; font-weight: 1.5; color: #111 !important; }
/**********************************************************************************************/
#AgreeCookies { display: block; position: fixed; z-index: 999; bottom: 15px; left: 15px; width: 380px; 
  background: rgba(33,33,33,0.88); color: #fff; padding: 12px 15px; border-radius: 12px; min-height: 100px; }
#AgreeCookies p { font-size: 13px; font-weight: 400; color: #fff; line-height: 1.5; }
#AgreeCookies p a { font-size: 13px; font-weight: 500; color: orange; transition: all 0.5s; }
#AgreeCookies p a:hover { color: lightyellow;  transition: all 0.25s; }
#AgreeCookies #btnAgree:hover { color: #fff !important; border-color: rgb(29, 212, 29) !important; 
  background: rgb(6, 145, 6) !important; transition: all 0.25s; }
#AgreeCookies .hide { display: none !important; }
#AgreeCookies .show { display: block !important; }
/**********************************************************************************************/
@media only screen and (max-width: 991px) {
  #AgreeCookies { width: calc(100% - 30px) !important; padding: 15px !important; }
}
/**********************************************************************************************/
.btn-call-phone {
  position: fixed;
  right: 21px;
  bottom: 25px;
  z-index: 996;
  background: var(--thm-theme-brown);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  transition: all 0.4s;
  border: solid 2px #fff;
}
.btn-call-phone svg {
  color: #fff !important;
  width: 30px;
  height: 30px;
}
.btn-call-phone:hover {
  background: var(--thm-theme-brown) !important;
  color: #fff;
  width: 50px;
  height: 50px;
  right: 18px;
  transition: all 0.4s;
}

.btn-whatsapp {
  position: fixed;
  right: 21px;
  bottom: 80px;
  z-index: 996;
  background: transparent !important;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.btn-whatsapp svg {
  color: #fff !important;
  width: 60px;
  height: 60px;
}
.btn-whatsapp:hover {
  width: 50px;
  height: 50px;  
  right: 18px;
  transition: all 0.4s;
}

