.mod-find-case {
  background:url('../img/find_in_box.jpg') no-repeat right; 
}

.acym__users__creation__fields__title {
  display: inherit;
}

.info-box-prod i {
  font-size: 40px;
  float: left;
  margin-right: 15px;
  color: #565e64;
}

.right {
  height: 90px;
  width: 45px;
}

.home-custom-iterior {
  background-color: #f6fafd;
}

.right {
  border-bottom-right-radius: 90px;
  border-top-right-radius: 90px;
}

.page-video {
  background-size: cover;
  width: 100%;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: #000;
}

a:hover {
  text-decoration: none;
  color: #666;
}

joomla-alert {
   margin-top: 10px;
}

.wa-msg {
  position: fixed;
  right: 20px;
  bottom: 10px;
}

.wa-msg:hover {
  opacity: 0.6;
}

.list-unstyled > li {
  margin-bottom: .4rem;
}

.nav-link-style {
  color: #4b566b;
}

.nav-link-style:hover {
  color: #e10729;
}

.info-box i {
  font-size: 60px;
  color: #fff;
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
}

.info-box {
  color: #fff;
}

.navbar-brand-top {
  float: left;
  margin-top: 7px;
}

.bg-repeat-0 {
  background-repeat: no-repeat !important;
}

.bg-position-top-center {
  background-position: top center !important;
}

.text-primary {
   color:#000 !important;
}

.text-primary:hover  {
   color:#666;!important;
}

.dropdown-item {
  position: relative;
  width: 100%;
  transition: all .25s ease-in-out;
  font-size: .875rem;
  font-weight: normal;
}


.navbar .dropdown-menu .nav-link  {
  color: #212529;

}

.navbar .dropdown-menu .nav-link:hover {
  color: #1e2125;
  background-color: #e9ecef;
}

.navbar .dropdown-menu .nav-link.active {
  color: #fff;
  text-decoration: none;
  background-color: #0d6efd;
}

#offcanvasNavbar2 .nav-link:hover{
background-color: #dee2e6;
}

#offcanvasNavbar2 .current.active a {
  color: #e10729;
  background-color: transparent;
  border-color: transparent;
}

.bg-secondary {
  --cz-bg-opacity: 1;
  background-color: #f6f9fc !important;
}

.bg-danger.badge-shadow {
  box-shadow: 0 .5rem 1.125rem -0.275rem rgba(243,71,112,.9);
}

.btn-success.btn-shadow {
  --cz-btn-box-shadow: 0 .5rem 1.125rem -.5rem rgba(25, 135, 84, 0.9);
  box-shadow: var(--cz-btn-box-shadow);
}

.btn-shadow:hover {
  box-shadow: none;
}

.icon-black {
    color: #000;
}

.icon-orange {
    color: #FF5C26;
}

.icon-green {
    color: #776e53;
}

.icon-green-light {
    color: #6DD900;
}

.icon-light {
    color: #26C9FF;
}

.icon-red {
    color: #FF0000;
}

.icon-blue {
    color: #006DD9;
}

.icon-grey {
    color: #CCCCCC;
}

.icon-yellow {
    color: #DEDE00;
}

.icon-silver {
    color: #EEEEEE;
}

.icon-trasparent {
    color: #EAF9FF;
} 

@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.rotating {
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
}

.bg-accent {
  background-color: #e10729;
}

.navbar-tool-icon {
  font-size: 1.25rem;
  line-height: 2.875rem;
}

#dropdownLang img {
  height: 20px;
  line-height: 2.875rem;
  display: inline-block;
  padding: 2px 0;
}

.navbar .megamenu{ padding: 1rem; }

/* ============ desktop view ============ */
@media all and (min-width: 992px) {

  .navbar .has-megamenu{position:static!important;}
  .navbar .megamenu{left:0; right:0; width:100%; margin-top:0;  }

} 
/* ============ desktop view .end// ============ */

/* ============ mobile view ============ */
@media(max-width: 991px){
  .navbar.fixed-top .navbar-collapse, .navbar.sticky-top .navbar-collapse{
    overflow-y: auto;
      max-height: 90vh;
      margin-top:10px;
  }
}

@media (min-width: 992px) {



  @keyframes slideIn {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }

  100% {
    transform: translateY(0rem);
    opacity: 1;
  }

  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
}

@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: transform;
    -webkit-opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 1;
  }

  0% {
    -webkit-transform: translateY(1rem);
    -webkit-opacity: 0;
  }
}


.navbar-expand-lg .dropdown-menu.show {
     -webkit-animation-name: slideIn;
    animation-name: slideIn;
     animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
  }
}

#vat-response {
  width: 100%;
  margin-top: .25rem;
  font-size: .875em;
}

#country_code_field {
  background-color: #fff;
}

.checkout_shipping_block #table_shippings .name.active-shipping, .checkout_payment_block #table_payments .name.active-payment {
  background-color: rgba(78,84,200,.15);
  border: 1px solid #e10729;
}

.steps {
  display: flex;
  width: 100%;
  background-color: #fff;
}

.step-item {
  flex-basis: 0;
  flex-grow: 1;
  transition: color .25s ease-in-out;
  text-align: center;
  text-decoration: none !important;
}

.step-item {
  text-align: center;
}

.step-label {
  padding-top: 1.33rem;
  font-size: 14px;
}

.step-label > i {
  margin-top: -0.25rem;
  margin-right: .425rem;
  font-size: 1.2em;
  vertical-align: middle;
}

.steps-light .step-item {
  color: #000;
}

.steps-light .step-item.active {
  color: green;
}

.steps-light .step-item:hover {
  opacity: 0.7;
}

.steps-light .step-item.active.current {
  color: #e10729;
  pointer-events: none;
}

.step-item.next {
  pointer-events: none;
  color: #444;
}

.steps-light .step-item.active .step-count {
  color: #fff;
  background-color: green;
}

.steps-light .step-item.active.current .step-count {
  color: #fff;
  background-color: #e10729;
}

.step-item:first-child .step-progress {
  border-radius: .125rem;
    border-top-right-radius: 0.125rem;
    border-bottom-right-radius: 0.125rem;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.steps-light .step-count {
  color: #fff;
  background-color: #485268;
}

.steps-light .step-progress {
  color: #fff;
  background-color:#485268;
}

.steps-light .active .step-progress {
  color: #fff;
  background-color: green;
}

.steps-light .active.current .step-progress {
  color: #fff;
  background-color: #e10729;
}

.step-count {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  width: 1.625rem;
  height: 1.625rem;
  margin-left: -0.8125rem;
  border-radius: 50%;
  font-size: .875rem;
  line-height: 1.625rem;
}

.step-progress {
  position: relative;
  width: 100%;
  height: .25rem;
}

.bg-box-price {
  color: #212529;
}

#productSlider.loader::after {
  background-image: url(../img/spinner.svg);
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 100%;
  content: ' ';
  left: 0;
  bottom: 0;
  z-index: 2;
  position: absolute;
}


#productSlider .carousel-indicators {
  position: initial;
  margin: 0;
  background-color: #fff;
  
}

#productSlider .carousel-item {
    text-align: center;
    background-color: #fff;
}

#productSlider .full-screen-images {
  position: absolute;
  left: 5px;
  top: 5px;
  background-color: rgba(255,255,255,0.5);
  padding: 10px;
  font-size: 25px;
  z-index: 3;
}

#productSlider .carousel-indicators button.thumbnail {
  height: 120px;
  border: 1px solid #ccc;
  width: auto;
  padding: 5px;
  background-color: #fff;
  border-radius: 5px;
}

#productSlider .carousel-indicators button.thumbnail:not(.active) {
  opacity: 0.7;
}


#productSlider .carousel-indicators button.thumbnail.active {
    box-shadow: 0px 0px 5px rgb(255, 7, 41);
    border: 1px solid #f60;
}

#productSlider .carousel-indicators .thumbnail img {
    max-height: 100px;
}

.productfull .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  color: #495057;
  background-color: #fff;
  border-color: #e10729 #e10729 #fff;
}

.productfull .nav-tabs {
  border-bottom: 1px solid #e10729;
}

.productfull .nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
    border-color: #e10729 #e10729 #fff;
}

.productfull .nav-link {
  display: block;
  padding: .5rem 1rem;
  color: #e10729;
}

.productfull .mod-breadcrumbs__wrapper {
  background-color: transparent;
}

.productfull .mod-breadcrumbs__wrapper .breadcrumb {
  padding: 0 !important;
}

.productfull .mod-breadcrumbs__wrapper .breadcrumb .breadcrumb-item.active {
  color: var(--bs-gray-dark);
}


.productfull .mod-breadcrumbs__wrapper .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: #666;
}

.productfull .prod_attr_img {
  display: none;
}

.productfull .manufacturer_logo {
  height: 50px;
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 2;
}

.productfull .manufacturer_logo img {
  height: 100px;
  width: 100px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: auto;
  right: 0;
  margin-top: -25px;
  z-index: 1;
}

.product-container {
  background-color: #ff6600;
}


.productfull .info-prod {
  margin-bottom: 10px;
}



.btn-attribute {
    color: #6c757d;
    background-color: #fff;
    border-color: #6c757d;
}

.cart-canvas .bi-bag.cart-on::after {
  content: attr(value);
  font-size: 12px;
  color: #fff;
  background: #e10729;
  border-radius: 50%;
  padding: 0 5px;
  position: relative;
  left: -8px;
  top: -10px;
  opacity: 0.9;
  font-style: normal;
  box-shadow: 2px 2px 2px rgba(0,0,0,0.3);
  text-shadow: -1px 0px 0px rgba(0,0,0,0.8);
}

#offcanvasCart .offcanvas-header {
  text-transform: uppercase;
  font-size: 16px;
  background-color: var(--bs-gray-dark);
  color: #fff;
}

#offcanvasCart .offcanvas-header a {
  color: #fff;
}

#offcanvasCart .card {
  color: #555;
}

#offcanvasCart .card .remove-cart {
  color: red;
}

#offcanvasCart .card h5 {
  text-transform: uppercase;
  font-size: 11px;
}

#offcanvasCart .card .tax-info{
  font-size: 8px;
  color: #999;
}

#offcanvasCart .card .cart_attribute {
  font-size: 10px;
}

#offcanvasCart .card h5 a {
  color: #000;
}

#offcanvasCart .card h5 a:hover {
  color: #ccc;
}

#offcanvasCart .offcanvas-body {
  margin-bottom: 100px;
}

#offcanvasCart .cart-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: var(--bs-gray-dark);
  padding: 15px;
  color: #fff;
  box-shadow: 0 -5px 5px rgba(0,0,0,0.3);
}

#offcanvasCart .cart-total {
  margin-bottom: 10px;
}

#offcanvasCart .cart-total span {
  color: #ccc;
}

#offcanvasCart .btn-back-shop {
  color: #ccc;
}

#offcanvasCart .btn-back-shop:hover {
  color: #fff;
}

.image_block.loader::after {
  background-image: url(../img/spinner.svg);
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 100%;
  content: ' ';
  left: 0;
  bottom: 0;
  z-index: 2;
  position: absolute;
}

.jshop_list_category .image_block {
  overflow: hidden;
  position: relative;
}

.jshop_list_category .image_block img {
  transition: transform .2s;
  display: block;
}

.jshop_list_category .image_block img:hover {
  transform: scale(1.2);
}


.contact-info .card-body i {
  color: #e10729 !important;
  display: inherit!important;
}



body {
  min-height: 800px;
  
  background-color: #fff;
}



.tanks-page i, .cart_empty_text i{
	font-size: 150px;
}

.no_products_filter i {
	font-size: 150px;
}





.bg-w {
	border: 1px solid var(--bs-gray-dark);
	padding: 15px;
}

.fs-md {
  font-size: 0.9375rem !important;
  color: rgb(75, 86, 107);
}

.fs-ms {
  font-size: 0.8125rem !important;
}

.fs-sm {
	font-size: 0.875rem !important;
}

.fs-xs {
  font-size: 0.75rem !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.text-muted {
  --cz-text-opacity: 1;
  color: #7d879c !important;
}

.py-grid-gutter {
	padding: 1.875rem !important;
}



.mb-grid-gutter {
  margin-bottom: 1.875rem !important;
}

.iframe-full-height-wrap {
  position: relative;
  min-height: 18rem;
  overflow: hidden;
}

.iframe-full-height {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: center center !important;
}


.page-header h1 {
  position: relative;
  text-transform: uppercase;
  margin-top: 0px;
  padding: 10px;
  color: #333;
  background: #fff;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.page-header h1:after {
  position: absolute;
  background: url(../img/dot_title.png) no-repeat left center;
  content: "";
  right: -30px;
  top: 0;
  width: 25px;
  height: 54px;
 
}



@keyframes pulse {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  50% {
    -webkit-transform: translate(0, 10px);
            transform: translate(0, 10px); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } 
}

.icon-angle-double-left, .icon-angle-left, .icon-angle-right, .icon-angle-double-right {
	display: inline-block;
	font-family: bootstrap-icons !important;
	font-style: normal;
	font-weight: normal !important;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	vertical-align: -.125em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-angle-double-left::before {
   content: "\F27F";
}

.icon-angle-left::before {
   content: "\F284";
}

.icon-angle-right::before { 
	content: "\F285";
}

.icon-angle-double-right::before {
	content: "\F280";
}

.jshop_pagination .pagination {
	display: inline-flex;
}


.top-bar {
    background-color: #fff;
}

.bar-top-shop {
	padding: 25px 0;
}

.bar-top-shop .justify-content-left {
	float: left;
	width:70%
}

.bar-top-shop .justify-content-end {
	width:30%
}

.bar-top-shop .nav-link {
    color: #4b566b;
}

.bar-top-shop .nav-link i {
	font-size: 24px;
}

#custom-search-input {
    padding: .5rem 1rem;
}

#search-shop {
	width: 100%;
}

#searchclear {
    position: absolute;
    right: 50px;
    top: 7px;
}

#jshop_search {
	border-radius: 0;
}

.btn-search {
	background-color: #ff6600;
	color: #fff;
	border-color:#ff6600;
}

.cat-shop {
	padding-top: 20px;
}

.img_cat {

}

.product-top-list {
	margin-bottom: 15px;
}

.product-top-list:top {
	color: #ff6600;
}

.product-top-list .title-cats {
	border-bottom: 5px solid #ff6600;
	background-color: #fff;
}

.product-top-list .title-cats h1{
	display: inline-block;
	background-color: #f60;
	padding: 5px 10px 5px 10px;
	margin: 0;
	color: #fff;
	text-transform: uppercase;
	  -webkit-transition: font-size .5s ease;
  -moz-transition: font-size .5s ease;
  -o-transition: font-size .5s ease;
  transition: font-size .5s ease;
}

.inner-top-list .jshop.filters {
	padding: 15px;
}

.category_description {
	font-size: 14px;
	padding: 10px;
	visibility: visible;
  opacity: 1;
  transition: visibility 0.5s, opacity 0.5s linear;
  max-height: 500px;
  
}

.category_description p {
	margin-bottom: 0;
}

.product-top-list.top-small .title-cats  h1 {
	font-size: 17px;
}

.product-top-list.top-small .inner-top-list {
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
}

.product-top-list.top-small .category_description {
	visibility: hidden;
  opacity: 0;
  max-height: 0;
 
  overflow: hidden;
  padding: 0;
}


.mod-breadcrumbs__wrapper {
	background-color: var(--bs-gray-dark);
	font-size: 14px;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #C8C8C8;
}

.breadcrumb-item a {
	color: #fff;
}

.breadcrumb-item.active {
  color: #C8C8C8;
}

#search-shop .dropdown.open {
	position: initial;
}

#search-result {
  position: absolute;
  top: 83px;
  width: 100%;
  display: none;
  margin-top: -1px;
  overflow: hidden;
  font-size: 14px;
  color: var(--bs-gray-dark);
  background-color: transparent;
  z-index: 2147483647;
  left: 0;
  right: 0;
}

#search-result .inner-result {
  padding-top: 15px;
  padding-bottom: 15px;
  position: relative;
  background-color: #fff;
  border: 1px solid #ccc;
  top: 0;
  left: 0;
  right: 0;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 10px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
}

#search-result .title {
	height: 40px;
}

#search-result .search-img {
  min-height: 90px;
}

#search-result .search-img img{
  max-height: 90px;
}

.search-item .search-desc h4 {
	font-size: 14px;
	text-transform: uppercase;
}



.list_category .category {
	
}

.list_category .category:hover {
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.list_category .category_info {
	background-color: var(--bs-gray-dark);
	color: #ccc;
}

.list_category .category_name {
	background-color: #ff6600;
	min-height: 59px;
}

.list_category .category_name a {
	color: #fff;
}

.list_category .category_name a:hover {
	color: #ccc;
}

.list_category .category_short_description {
	min-height: 60px;
}

#inner-wrap {
}

.home #inner-wrap {
	padding-top: 0;
}

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}


.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: var(--bs-gray-dark);
  border-color: var(--bs-gray-dark);
}

.page-link, .page-link:hover  {
	color: #000;
}


.navbar-toggler {
    border: 0;
    box-shadow: none;
    font-size: 26px;
}
.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler span {
    display: block;
    background-color: #01649d;
    background-image: none!important;
    height: 3px;
    width: 25px;
    margin-top: 5px;
    margin-bottom: 5px;
    position: relative;
    left: 0;
    opacity: 1;
    transition: all 0.2s ease-out;
    transform-origin: left center;
}

.home .navbar-toggler span {
    background-color: #fff;
}

.navbar-toggler span:nth-child(1) {
    margin-top: 0.3em;
}
.navbar-toggler:not(.opened) span:nth-child(1){
    transform: translate(0%, 0%) rotate(0deg) ;
}
.navbar-toggler:not(.opened) span:nth-child(2) {
    opacity: 1;
}
.navbar-toggler:not(.opened) span:nth-child(3) {
    transform: translate(0%, 0%) rotate(0deg) ;
}
.navbar-toggler span:nth-child(1) {
    transform: translate(15%, -33%) rotate(45deg);
}
.navbar-toggler span:nth-child(2) {
    opacity: 0;
}
.navbar-toggler span:nth-child(3) {
    transform: translate(15%, 33%) rotate(-45deg) ;
}


.modal-header.alert-notice {
  --bs-alert-color: var(--bs-primary-text);
  --bs-alert-bg: var(--bs-primary-bg-subtle);
  --bs-alert-border-color: var(--bs-primary-border-subtle);
  --bs-alert-link-color: var(--bs-primary-text);
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}




.alert-error{
    color: #842029;
    background-color: #f8d7da;
}

.nav-top {
	background-color: var(--bs-gray-dark);
	padding: 0;
	position: relative;
	z-index: 10;
}




.bd-navbar {
  padding: .75rem 0;
  background-color: transparent;
 
}

.shop-menu.navbar .nav-link {
	color: #01649d;
}

.home .shadow-lg {
	box-shadow: none!important;
}

.home .shop-menu.navbar .nav-link {
	color: #fff;
}



.product_video iframe {
  aspect-ratio: 16 / 9;
  width: 100%;
}


.offcanvas-start {
	width: 350px;
}

#offcanvasNavbar2 {
	background-color: #fff;
}

#offcanvasNavbar2 .offcanvas-header {
	background-color: #fff;
	border-bottom: 1px solid rgba(0,0,0,.125);
}

#offcanvasNavbar2 .offcanvas-header img {
	height: 35px;
}

#offcanvasNavbar2 .nav-link {
  border-bottom: 1px solid rgba(0,0,0,.125);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: #333;

}

#offcanvasNavbar2 .nav-link.active {
	color: #ff6600;
}




 .page-title-overlap {
	padding-bottom: 6.375rem;
}

 .page-title-overlap + * {
  margin-top: -4.875rem;
}


footer .social img {
  width: 35px;
}


footer .navbar-nav{
  margin-bottom: 20px;
}

footer a {
  color: #fff;
}

.img_manu {
	position: relative;
	height: 43px;
	float: left;
	overflow: hidden;
	width: 73px;
}

.img_manu img {
	height: 70px;
	position: absolute;
	width: 100%;
	margin-top: -9px;
}

.top-small .img_manu {
  position: relative;
  height: 35px;
  float: left;
  overflow: hidden;
  width: 50px;
}

.top-small .img_manu img {
  height: 52px;
  position: absolute;
  width: 100%;
  margin-top: -9px;
}

.manufactuter_list.list-group .list-group-item.active {
	background-color: #ff6600;
	color: #fff;
	border-color: #ff6600;
}


.jshop_list_manufacturer .manufacturer {
  border: 1px solid #ccc;
  margin-bottom: 20px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.jshop_list_manufacturer .manufacturer:hover {
  box-shadow: none;
}


.jshop_list_manufacturer .manufacturer_name {
  background-color: #ff6600;
  padding: 10px 0;
 
}

.jshop_list_manufacturer .manufacturer_name a {
  color: #fff;
}

.jshop_list_manufacturer .manufacturer_name a:hover{
  color: #ccc;
}

.jshop_list_manufacturer .manufacturer {
  background-color: var(--bs-gray-dark);
  color: #ccc;
  font-size: 14px;
}

.jshop_list_manufacturer .manufacturer_short_description{
  margin: 0;
  padding: 10px;
  min-height: 150px;
}


.home #footer {
	margin-top: 0;
}


#comjshop_list_product .intro-shop {
	text-align: center;
	margin-bottom: 20px;
}

#col-item {
  z-index: 10;
}

#col-item .custom {
	border: 1px solid #565e64;
	margin-bottom: 20px;
	padding: 0 15px 15px 15px;
}

#col-item .custom h3 {
	background-color: var(--bs-gray-dark);
	margin-left: -15px;
	margin-right: -15px;
	color: #fff;
	padding: 15px;
	font-size: 1.2rem;
	text-transform: uppercase;
}

.widget-title {
  margin-bottom: 1.125rem;
  font-size: 1.5rem;
  font-weight: 500;
}

.widget-product-title {
  font-size: .875rem;
  font-weight: 500;
}

.widget-product-meta {
	font-size: .8rem;
}

.small-cart-list {
  overflow-y: scroll;
  max-height: 445px;
}



.com-users-reset legend, .com-users-reset-confirm legend {
	font-size: 1.2rem;
}

.footer {
	padding: 20px 0;
	color: #fff;
	margin-top: 20px;
	background-color: var(--bs-gray-dark);

}

.form-contact h3 {
	text-transform: uppercase;
	text-align: center;
	color: #01649d;
}

.shop-carousel .tns-nav {
	text-align: center;
	margin: 10px 0;
}

.shop-carousel {
	padding-bottom: 20px;
}

.shop-carousel .carousel-container {
	position: relative;
}


.shop-carousel .product_label {
	position: absolute;
	
}

.shop-carousel .tns-carousel [data-controls] {
	position: absolute;
	top: 50%;
	width: 2.75rem;
	height: 2.75rem;
	margin-top: -1.375rem;
	transition: all .3s ease-in-out;
	border: 1px solid #e3e9ef;
	border-radius: 50%;
	background-color: #fff;
	font-size: .8085rem;
	line-height: 2.625rem;
	text-align: center;
	z-index: 10;
}


.shop-carousel .tns-nav > [aria-controls] {
	width: 9px;
	height: 9px;
	padding: 0;
	margin: 0 5px;
	border-radius: 50%;
	background: #ddd;
	border: 0;
}

.shop-carousel .tns-nav > .tns-nav-active {
	background: #999;
}
.shop-carousel  .image_block {
	min-height: 250px;
	text-align: center;
}


.shop-carousel .product-title a {
	color: #555;
	font-weight: 500;
}

.shop-carousel .old_price, .shop-carousel .jshop_price {
	display: inline;
}

.shop-carousel .jshop_price {
	font-size: 1rem;
	color: #000;
}

.shop-carousel .old_price {
	font-size: 0.8rem;
}

.shop-carousel .control {
	list-style: none;
}

.shop-carousel .control li {
	position: absolute;
	z-index: 99;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	width: 2.75rem;
	height: 2.75rem;
	margin-top: -1.375rem;
	transition: all .3s ease-in-out;
	border: 1px solid #e3e9ef;
	border-radius: 50%;
	background-color: #fff;
	font-size: .8085rem;
	line-height: 2.625rem;
	text-align: center;
	color: #000;
}

.shop-carousel .control li:hover {
	color: #555;
}

.shop-carousel .control li.prev {
	left: 5px;
}

.shop-carousel .control li.next {
	right: 5px;
}

.footer .nav-link {
	color: rgba(255,255,255,.65);
	display: block;
	transition: color .25s ease-in-out;
	font-size: .875rem;
	font-weight: normal;
}

.footer .nav-link:hover {
	color: #fff;
}

.footer .nav-link.active {
	color: #fff;
}

.footer .nav li .dropdown-item {
	color: #212529;
	padding: .25rem 1rem;
}

#logo-footer {
	text-align: center;
}

.footer .dati {
	margin-top:0px;
}

.footer h3 {
  margin-bottom: 1.125rem;
  font-size: 1.0625rem;
  font-weight: 500;
}

.footer .dati a {
   color: rgba(255,255,255,.65);
}

.footer .dati a:hover {
   color: #fff;
}

.footer .dati .wa_link {
   color: #1ad35b;
}

@media (min-width: 1480px) {
  .container {
    width: 100%;
    max-width: 1480px;
  }

    .bar-top-shop .justify-content-left {
		width:60%
	}

	.bar-top-shop .justify-content-end {
		width:40%
	}
}

@media (min-width: 992px) {
  .mt-lg-n10 {
    margin-top: -10rem !important;
  }
}

@media (max-width: 991.98px){

  #carouselHome .carousel-caption {
    position: relative;
    left: 0;
    right: 0;
  }
  
  .mod-find-case {
     background:url('../img/find_in_box.jpg') no-repeat left top; 
     padding-top: 30%;
  }

  .page-header h1:after {
    display: none;
  }

  .page-header h1 {
    border-radius: 5px;
  }

  .footer .fot-menu {
  	text-align: center;
  }

  .wa-msg {
  	bottom: 5px;
  	right: 5px;
  }

	.wa-msg img {
	   width: 150px;
  }
  .bar-shop {
  	background-color: var(--bs-gray-dark);
  }

	.cont-btn-home {
		text-align: center;
	}
	
	.navbar-brand-top {
	  float: left;
	  margin-top: 7px;
	  width: 100%;
	  text-align: center;
	}

  #offcanvasCart {
  	width: 350px;
  }

	.top-container {
		width: 100%;
    max-width: 100%;
	}
  
  .bar-shop .nav-link {
	  color: #fff;
	}

	.mod-breadcrumbs__wrapper{
		font-size: 12px;
	}

	#carousel-bounding-box {
	  margin-bottom: 0;
	}

	#productSlider .carousel-item, #productSlider .carousel-item img {
      height: auto;
  }

	#comjshop_register .page-title-overlap + * {
	  margin-top: -5.6rem;
	}


   .bar-top-shop .justify-content-left {
		width:60%
	}

	.bar-top-shop .justify-content-end {
		width:40%
	}

	#search-shop {
	  width: auto
	}

	.dropdown-search {
		width: 100%;
    top: -3px !important;
    border-radius: 0;
	}

	#search-result {
		top: 71px;
	}

	.bar-top-shop {
	  padding: 0;
	}




	#top-nav .navbar-toggler {
	 	position: absolute;
	 	top: 20px;
	}

	#top-nav .shop-menu.navbar {
		position: absolute;
		top: 20px;
		right: 0;
		padding: 0;
	}
  

	#top-nav .shop-menu .nav-link {
		 padding: .25rem .75rem;
	}

	.navbar-brand {
		margin: 0;
		width: 100%;
		text-align: center;
	}

	.navbar-brand img {
		height: 60px;
	}

	.productfull .mod-breadcrumbs__wrapper {
		display: none;
	}

	.step-label {
		font-size: 12px;
	}



	#footer {
		text-align: center;
	}
}

@media (max-width: 575.98px) { 

  .mod-find-case {
     background:url('../img/find_in_box.jpg') no-repeat left top; 
     padding-top: 60%;
  }
	.video-container {
		padding-bottom: 178%;
	}

	#intro-video { 
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		width: 100% !important;
	  height: 100% !important;
	  max-height: 180vw !important;
	}

	#top-nav .shop-menu .dropdown-toggle::after {
    display:none;
  }

  .navbar-brand img {
	  height: 55px;
    padding-top: 5px;
  }
}





/* ── Allestimenti (attr-config-section) ─────────────────────── */
.attr-config-section {
    background: #f8f9fa;
    padding: 3rem 0;
    border-top: 3px solid #e10729;
}
.attr-config-section .section-title {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: .04em;
    color: #1a1a2e;
    position: relative;
    display: inline-block;
    padding-bottom: .5rem;
}
.attr-config-section .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #e10729;
    border-radius: 2px;
}
.attr-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: .75rem;
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease;
    cursor: default;
    height: 100%;
}
.attr-card.attr-card-clickable { cursor: pointer; }
.attr-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,.12);
}
.attr-card .attr-img-wrap {
    background: #f1f3f5;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.attr-card .attr-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}
.attr-card:hover .attr-img-wrap img { transform: scale(1.05); }
.attr-card .attr-card-body {
    padding: .85rem .9rem .9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.attr-card .attr-name {
    font-size: .85rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: .5rem;
    line-height: 1.3;
}
.attr-card .btn-attr-info {
    font-size: .75rem;
    color: #e10729;
    border: 1px solid #e10729;
    border-radius: 20px;
    padding: .2rem .75rem;
    background: transparent;
    transition: background .18s, color .18s;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
}
.attr-card:hover .btn-attr-info {
    background: #e10729;
    color: #fff;
}
/* Modal allestimenti */
.attr-modal .modal-header {
    background: #1a1a2e;
    color: #fff;
    border-bottom: 3px solid #e10729;
}
.attr-modal .modal-header .btn-close { filter: invert(1); }
.attr-modal .modal-title { font-weight: 600; font-size: 1rem; }
.attr-modal .modal-img-wrap {
    background: #f8f9fa;
    border-radius: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    margin-bottom: 1.2rem;
}
.attr-modal .modal-img-wrap img { max-height: 420px; width: 100%; object-fit: contain; }
.attr-modal .modal-desc { font-size: .92rem; color: #444; line-height: 1.7; }
.attr-modal .modal-footer { border-top: 1px solid #dee2e6; }
