/*
* Variabili globali
*/
:root{
	/*Colore principale usato per titoli*/
  --primary-color:#97385D;
  
	/*Gradazione più chiara del colore principale usato ad es. per etichetta sconto */
  --light-color:#E36B99;
  --light-bg-color:#E36B99;
  --light-txt-color:#ffffff;

	/*Gradazione più scura del colore principale usato ad es. per il prezzo di vendita su elenchi e scheda*/
	--dark-color:#4A1429;
  --dark-bg-color:#4A1429;
  --dark-txt-color:#ffffff;

	/*Promo banner, cookie bar, menu*/
	--highlight-bg-color:#97385D;
	--highlight-txt-color:#ffffff;
	
	/*Bottoni principali, es. Scheda, Aggiungi al carrello...*/
	--btn-primary-bg-color:#97385D;
	--btn-primary-txt-color:#ffffff;
	--btn-primary-hover-bg-color:#4A1429;
	--btn-primary-hover-txt-color:#ffffff;
	
	/*Bottoni secondary, es. registrati, logout...*/
	--btn-secondary-bg-color:#333333;
	--btn-secondary-txt-color:#ffffff;
	--btn-secondary-hover-bg-color:#97385D;
	--btn-secondary-hover-txt-color:#ffffff;
	
	/*Bottoni light, es. Aggiungi ai preferiti o al confronto*/
	--btn-light-bg-color:#dddddd;
	--btn-light-txt-color:#97385d;
	--btn-light-hover-bg-color:#4A1429;
  --btn-light-hover-txt-color:#ffffff;
  
  /*Bottoni su classi dark */
	--btn-dark-primary-bg-color:#97385D;
	--btn-dark-primary-txt-color:#ffffff;
	--btn-dark-primary-hover-bg-color:#ffffff;
	--btn-dark-primary-hover-txt-color:#97385D;
}

@font-face {
	font-display: block;
	font-family: 'icons8_win10';
	src: url('../../../../fonts/icons8_win10.woff2') format('woff2'),
		 url('../../../../fonts/icons8_win10.woff') format('woff'),
		 url('../../../../fonts/icons8_win10.ttf') format('ttf')
}

.left {
  float: left;
}

.right {
  float: right;
}

strong {
  font-weight: 600;
}

.form-control, select {
  border: none;
  background: white;
  outline: none;
  font-size: 14px;
  line-height: 22px;
  -webkit-box-shadow: 0;
          box-shadow: 0;
  height: auto;
  border-radius: 0;
  padding: 15px 15px;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif !important;
}

@media (min-width: 992px) {
  .form-control, select {
    font-size: 20px;
    line-height: 30px;
  }
}

html, body {
  font-size: 16px;
}

body {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 15px;
  color: #333333;
  background-color: white;
  min-height: 100vh;
}

@media (min-width: 992px) {
  body {
    font-size: 16px;
    line-height: 24px;
  }
}

header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
}

main {
  z-index: 20;
  margin-top: 0px;
}

* {
  margin: 0;
  padding: 0;
}

div, p, ul, li {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

a, a:hover, a:visited, a:focus {
  text-decoration: none;
  color: var(--primary-color);
}

a.link:hover {
  text-decoration: underline;
}

textarea:focus,
input:focus,
button:focus {
  outline: none;
}

input[type="number"] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

label.error {
  color: red;
  font-size: 12px;
}

input.error {
  border: 1px solid red;
}

a.button, .btn.btn-primary {
  border-radius: 0;
  background-color: var(--btn-primary-bg-color);
  color:var(--btn-primary-txt-color);
  padding: 10px 20px;
  outline: none;
  border: 0;
  text-transform: uppercase;
}

.btn.btn-primary, .btn-secondary
{
  /*box-shadow: 0 2px 20px 0 rgb(0 0 0 / 50%);*/
}

a.button:hover, a.button:active, a.button:focus, .btn.btn-primary:hover, .btn.btn-primary:active, .btn.btn-primary:focus {
  background-color: var(--btn-primary-hover-bg-color);
  color: var(--btn-primary-hover-txt-color);
  box-shadow: none;
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
  background-color: var(--btn-primary-bg-color);
  color:var(--btn-primary-txt-color);
  padding: 10px 20px;
  outline: none;
  border: 0;
}

.btn-primary:not(:disabled):not(.disabled).active:hover, .btn-primary:not(:disabled):not(.disabled).active:active, .btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:hover, .btn-primary:not(:disabled):not(.disabled):active:active, .btn-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-primary.dropdown-toggle:hover, .show > .btn-primary.dropdown-toggle:active, .show > .btn-primary.dropdown-toggle:focus {
  background-color: var(--btn-primary-hover-bg-color);
  color: var(--btn-primary-hover-txt-color);
  box-shadow: none;
}

.btn.btn-secondary {
  padding: 10px 20px;
  outline: none;
  border: 0;
  border-radius: 0;
  text-transform: uppercase;
  background-color: var(--btn-secondary-bg-color);
  color: var(--btn-secondary-txt-color);
}

.dark .btn.btn-secondary {
  background: var(--btn-dark-primary-hover-bg-color);
  color: var(--btn-dark-primary-hover-txt-color);
}

.form-control::-webkit-input-placeholder {
  color: #333333;
}

.form-control:-ms-input-placeholder {
  color: #333333;
}

.form-control::-ms-input-placeholder {
  color: #333333;
}

.form-control::placeholder {
  color: #333333;
}

input[type="submit"].form-control {
  padding: 12px 30px;
  background-color: var(--btn-primary-bg-color);
  color:var(--btn-primary-txt-color);
  border: none;
}

select {
  padding: 10px 20px;
  border: 1px solid #BDBDBD;
  margin-bottom: 10px;
}

.kd-portlet, .kd-portlet > div, .portlet, .portlet > div, .layerFilter, .layerFilter > div {
  position: relative !important;
  display: block !important;
  float: none !important;
  width: 100% !important;
  /* height: auto !important; */
  min-height: auto !important;
  visibility: visible !important;
  opacity: 1 !important;
  overflow: visible !important;
  text-align: inherit;
  min-width: 0 !important;
}

.portlet > div {
  z-index: 1 !important;
}

.content {
  min-height: auto !important;
}

.scroll-top {
  opacity: 0;
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 99;
  width: 50px;
  height: 50px;
  border: none;
  outline: none;
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
  background-color: var(--btn-secondary-bg-color);
  color: var(--btn-secondary-txt-color);
}

.scroll-top.active {
  opacity: 1;
}

.scroll-top::after {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -4px;
  margin-left: -8px;
  border: 0;
  border-bottom: 2px solid white;
  border-right: 2px solid white;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.scroll-top:hover {
  background-color: var(--btn-secondary-hover-bg-color);
  color: var(--btn-secondary-hover-txt-color);
}

.mobile-background {
  display: none;
  background: #333333;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity .4s;
  transition: opacity .4s;
  z-index: 11;
  opacity: .8;
}

.mobile-background.show {
  display: block;
}

.mobile-navigation-trigger {
  display: none;
}

.mobile-navigation-trigger:checked + .nav-menu-mobile {
  -webkit-transform: none;
          transform: none;
}

.mobile-navigation-trigger:checked + .nav-menu-mobile + .mobile-background {
  display: block;
}

.nav-menu-mobile {
  width: 85%;
  min-width: 140px;
  max-width: 455px;
  overflow-y: scroll;
  overflow-x: hidden;
  position: fixed;
  background: white;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 12;
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.nav-menu-mobile.show {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.nav-menu-mobile .top-nav-mobile {
  position: relative;
  background: #E0E0E0;
  padding: 20px 0;
}

.nav-menu-mobile .top-nav-mobile ul li {
  padding: 0 20px;
  display: inline-block;
  border-right: 1px solid #808080;
}

.nav-menu-mobile .top-nav-mobile ul li:nth-last-child(1) {
  border: 0;
}

.nav-menu-mobile .top-nav-mobile ul li a {
  display: block;
  color: #333333;
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  padding: 5px 0;
}

.nav-menu-mobile .top-nav-mobile ul li a:hover {
  color: var(--primary-color);
}

.nav-menu-mobile .top-nav-mobile .btn-close {
  position: absolute;
  background-color: var(--btn-primary-bg-color);
  width: 30px;
  height: 30px;
  border: 0;
  cursor: pointer;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

.nav-menu-mobile .top-nav-mobile .btn-close:hover {
  background-color:var(--btn-primary-hover-bg-color);
  color: var(--btn-primary-hover-txt-color);
}

.nav-menu-mobile .top-nav-mobile .btn-close::after {
  content: '';
  height: 20px;
  border-left: 2px solid white;
  position: absolute;
  top: 4px;
  left: 14px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.nav-menu-mobile .top-nav-mobile .btn-close::before {
  content: '';
  height: 20px;
  border-left: 2px solid white;
  position: absolute;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 4px;
  left: 14px;
}

/* MAIN_NAV_MOBILE */
.nav-menu-mobile .main-nav-mobile ul li {
  position: relative;
}
.nav-menu-mobile .main-nav-mobile ul.topmenu > li {
  border-bottom: 1px solid #e0e0e0;
}
.nav-menu-mobile .main-nav-mobile ul.topmenu ul {
  padding-left: 15px;
}
.nav-menu-mobile .main-nav-mobile ul a {
  display: inline-block;
  padding: 10px 15px;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 18px;
  color: #4F4F4F;
}
.nav-menu-mobile .main-nav-mobile ul a:hover {
  color:var(--primary-color) !important;
}
.nav-menu-mobile .main-nav-mobile ul .collapsed > a {
  font-weight: bold;
}
.nav-menu-mobile .main-nav-mobile ul.topmenu > li > a {
  padding: 15px;
  text-transform: uppercase;
  font-size: 14px !important;
  line-height: 21px;
  font-weight: 600;
}
.nav-menu-mobile .main-nav-mobile ul .arrow {
  position: absolute;
  top: 20px;
  right: 25px;
  width: 10px;
  height: 10px;
  border-bottom: 1px solid #808080;
  border-right: 1px solid #808080;
  transform: rotate(45deg);
  transition: all .25s ease-in-out;
  cursor: pointer;
}
.nav-menu-mobile .main-nav-mobile ul.topmenu ul .arrow {
  top: 12px;
}
.nav-menu-mobile .main-nav-mobile ul .collapsed > .arrow {
  top: 25px;
  transform: rotate(-135deg);
}
.nav-menu-mobile .main-nav-mobile ul.topmenu ul .collapsed > .arrow {
  top: 18px;
}
@media (min-width: 992px) {
  .nav-menu-mobile .main-nav-mobile ul.topmenu ul a {
    font-size: 18px;
    line-height: 27px;
  }
  .nav-menu-mobile .main-nav-mobile ul.topmenu > li > a {
    font-size: 20px;
    line-height: 30px;
  }
}

.nav-menu-mobile .bottom-nav-mobile {
  padding: 40px 0;
}

.nav-menu-mobile .bottom-nav-mobile ul.topmenu {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
}

.nav-menu-mobile .bottom-nav-mobile ul.topmenu li.level1 {
  vertical-align: middle;
  padding: 0;
}

.nav-menu-mobile .bottom-nav-mobile ul.topmenu li.level1 > a {
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  color: var(--primary-color);
  padding: 5px 20px;
  height: auto;
  font-size: 14px;
  line-height: 21px;
  font-weight: 600;
  position: relative;
  display: block;
}

@media (min-width: 992px) {
  .nav-menu-mobile .bottom-nav-mobile ul.topmenu li.level1 > a {
    font-size: 20px;
    line-height: 30px;
  }
}

.nav-menu-mobile .bottom-nav-mobile ul.topmenu li.level1 > a:hover {
  color: var(--primary-color);
}

/* Footer nav mobile */
.nav-menu-mobile .footer-nav-mobile {
  position: absolute;
  background: #E0E0E0;
  padding: 20px 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.nav-menu-mobile .footer-nav-mobile ul li {
  padding: 0 0px 0 20px;
  display: inline-block;
}

.nav-menu-mobile .footer-nav-mobile ul li:nth-last-child(1) {
  border: 0;
}

.nav-menu-mobile .footer-nav-mobile ul li a {
  display: block;
  color: #333333;
  text-transform: uppercase;
  line-height: 1;
}

.nav-menu-mobile .footer-nav-mobile ul li a:hover {
  color: #97385D;
}

.nav-menu-mobile .footer-nav-mobile ul li a.active {
    font-weight: 700;
}

.categoryMenuFlat {
  height: auto !important;
  overflow: visible !important;
  min-height: auto !important;
}
.categoryMenuFlat .menuview_flat {
	height: auto !important;
}

.promo-banner {  
  background-color: var(--highlight-bg-color);
  color:var(--highlight-txt-color);
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  font-size: 12px;
  line-height: 15px;
  padding: 9px 0  12px;
}

.promo-banner-row{
}

.promo-banner-col{
  padding-top:0px;
  padding-right:0px;
  padding-bottom:0px;
  padding-left:0px;
}
.promo-banner-col div{
	white-space: nowrap;
    text-overflow: ellipsis;
    max-width: calc(100% - 50px);	  	
}
@media (max-width: 992px) {
	.promo-banner-col{	
		width:25% !important;
	}	
}	
@media (max-width: 768px) {
	.promo-banner-col div{	
		display:none !important;
	}
}
@media (min-width: 992px) {
  .promo-banner {
    font-size: 14px;
    line-height: 25px;
    max-height: 55px;
  }
}

.promo-banner span {
  display: block;
  /* padding: 10px; */
}

.promo-list {
	margin: 60px 0;
}

.promotions li.promotion {
	margin: 0;
	position: relative;
	min-height: 250px;
	min-width: 300px;
}

.promotions li.promotion .image {
	background: #c595a8;
}

.promotions li.promotion img {
    min-height: 250px;
    object-fit: cover;
}

.promotions .owl-item:first-child li.promotion {
	margin-left:0px;
}
.promotions .owl-item:last-child li.promotion {
	margin-right: 0px;
}

.dark .promo-layer {
    color: #fff;
}
.promo-layer {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
}

.promo-layer h3.title {
	font-size: 20px;
    font-weight: 500;
    margin-bottom: 5px;
}

.promo-layer .effect {
    font-weight: 700;
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 25px;
	text-transform: uppercase;
}

.promo-layer .btn.btn-secondary {
    padding: 20px 40px;
	font-size: 20px;
	font-weight: 700;
}

ul.social-nav {
  display: inline-block;
}

ul.social-nav li {
  display: inline-block;
  margin-right: 10px;
}

#nav-search {
  display: none;
}

.menu-toggle {
  margin: 0 10px 0 0;
}

.menu-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
      flex-direction: column;
  line-height: 1;
  cursor: pointer;
  width: 30px;
  height: 30px;
  background-color: var(--btn-primary-bg-color);
  color:var(--btn-primary-txt-color);
  background-image: url(../img/menu-icon.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.menu-icon:hover {
  background-color:var(--btn-primary-hover-bg-color);
  color: var(--btn-primary-hover-txt-color);
}

.mobile-header {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
      flex-direction: column;
  min-width: 310px;
  height: 100%;
  background-color: white;
}

.mobile-header .mobile-search-wrap .portlet > div {
  position: static !important;
}

.mobile-header .header-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
      flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
  padding: 10px 0;
}

.mobile-header .header-top .user_toolbar {
  margin-left: 10px;
}

.mobile-header .header-top .header-favourite-nav {
  margin-right: 10px;
}

.mobile-header .header-top .top-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
}

.mobile-header .header-top .top-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
}

.mobile-header .header-top .top-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
}

.mobile-header .nav-search {
  position: relative;
}

.mobile-header .nav-search .form-control {
  position: relative;
  font-size: 14px;
  line-height: 21px;
  width: 100%;
  height: 40px;
  border: 0;
  padding: 5px 35px 5px 5px;
  border: 1px solid #BDBDBD;
}

@media (min-width: 992px) {
  .mobile-header .nav-search .form-control {
    font-size: 20px;
    line-height: 30px;
  }
}

.mobile-header .nav-search .form-control::-webkit-input-placeholder {
  color: black;
}

.mobile-header .nav-search .form-control:-ms-input-placeholder {
  color: black;
}

.mobile-header .nav-search .form-control::-ms-input-placeholder {
  color: black;
}

.mobile-header .nav-search .form-control::placeholder {
  color: black;
}

.mobile-header .nav-search .search-button {
  position: absolute;
  top: 50%;
  right: 0;
  width: 30px;
  height: 30px;
  background: url(../img/search-icon-min.png) center center no-repeat;
  margin-top: -15px;
  border: 0;
  outline: 0;
}

.mobile-header .nav-search .search-button:focus {
  border: 0;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.top-bar {
  background-color: white;
  padding: 15px 0;
  border-bottom: 1px solid #bdbdbd;
  max-height: 55px;
}

.top-bar .categoryMenuFlat {
  text-align: right;
  height: auto !important;
}

.top-bar ul.topmenu {
  display: inline-block;
}

.top-bar ul.topmenu li {
  display: inline-block;
  margin-left: 20px;
}

.top-bar ul.topmenu li:first-child {
	margin-left: 0px;
}

.top-bar ul.topmenu li a {
  color: white;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  color: #333333;
}

.top-bar ul.topmenu li a.active {
	font-weight: 700;
}

.top-bar ul.nav {
  display: inline-block;
}

.top-bar ul.nav li {
  display: inline-block;
  margin-left: 20px;
}

.top-bar ul.nav li a {
  color: white;
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  color: #3E3E3E;
}

.top-bar ul.nav li a:hover {
  color: var(--primary-color);
}

.header-link-wrapper {
  text-align: center;
  position: relative;
  cursor: pointer;
}

.header-link-wrapper .header-link {
  position: relative;
}

.header-link-wrapper .header-link-icon {
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  margin: 0 auto;
  height: 24px;
}

.header-link-wrapper a.link:hover{
  text-decoration:none;
}
.header-link-wrapper .link-icon::after {
    font-family: 'icons8_win10';
    font-size: 36px;
    font-style: normal;
    display: block;
    text-align: center;
    width: 100%;
    height: 100%;
    color:#333333;
	line-height: 1;
}

.header-link-wrapper .link-icon.basket::after {
    content: "\f65c";
}

.header-link-wrapper .link-icon.wishlist::after {
    content: "\f5d1";
}

.header-link-wrapper .link-icon.user::after {
    content: "\f293";
}
.header-link-wrapper .link-icon.user.logged::after {
    content: "\f269";
}
.header-link-wrapper .header-link-icon.disabled {
  opacity: 0.5;
}

.header-link-wrapper .header-link-text, .header-link-wrapper a .header-link-text {
  display: none;
  font-weight: 600;
  color: #333333;
}

.search_raw {
  z-index: 100;
}

.modal-overlay {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background: #0a0a0a;
  left: 0;
  top: 0;
  z-index: 1000000;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-overlay.active {
  display: block;
}

.modal-content {
  display: none;
  position: fixed;
  top: 40%;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 1000001;
  border: 0;
}

.modal-content.active {
  display: block;
}

.modal-search-input {
  position: relative;
  width: 90%;
  margin: 0 auto;
}

.modal-search-input input {
  background: #fff;
  width: 100%;
  border-radius: 30px;
  padding-left: 30px;
  font-weight: 600;
}

.modal-search-input .search-button {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  background: url(../img/search-icon.png) center center no-repeat;
  border: 0;
  outline: 0;
}

.modal-search-input .search-button:focus {
  border: 0;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.modal-wrap {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background: #0a0a0a;
  left: 0;
  top: 0;
  z-index: 1000000;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-wrap .modal-box {
  margin: 15% auto;
  /* 15% from the top and centered */
  width: 80%;
  /* Could be more or less, depending on screen size */
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
}

.modal-wrap .modal-box .modal-header {
  border: 0;
  background-color: white;
}

.modal-wrap .modal-box .modal-header h4 {
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
}

.modal-wrap .modal-box .modal-body {
  border: 0;
  background-color: white;
}

.modal-wrap .modal-box .modal-footer {
  background: #E0E0E0;
}

.modal-form-wrap .modify-box .modify-box-header h4 {
  font-size: 18px;
  line-height: 22px;
  text-transform: none;
}

@media (min-width: 992px) {
  .modal-form-wrap .modify-box .modify-box-header h4 {
    font-size: 20px;
    line-height: 30px;
  }
}

.modal-form-wrap .modify-box .modify-box-main ul li {
  background: #F2F2F2;
  margin-bottom: 5px;
  padding: 10px;
}

.modal-form-wrap .modify-box .modify-box-main ul li input + label {
  padding: 0 0 0 40px;
}

.modal-form-wrap .modify-box .modify-box-footer .btn.btn-primary, .modal-form-wrap .modify-box .modify-box-footer .btn.btn-secondary {
  padding: 10px 20px;
  width: 100%;
  margin: 3px 0;
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {
    margin-top: -200px;
    opacity: 0;
  }
  to {
    margin-top: 0;
    opacity: 1;
  }
}

@keyframes animatetop {
  from {
    margin-top: -200px;
    opacity: 0;
  }
  to {
    margin-top: 0;
    opacity: 1;
  }
}

.modal-upload {
  max-width: 700px;
  background: white;
}

.modal-upload .modal-upload-header {
  height: 200px;
}

.modal-upload .modal-footer {
  background: #E0E0E0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 8px;
}

.modal-upload button {
  margin-left: 10px;
}

.gscs_fe_html_user_toolbar_container{
    height:100%;
}

.logo-bar .user_toolbar {
  /*display: none;*/
}

.logo-bar .header-link-wrapper {
  height:100%;
}

@media (max-width: 992px) {
  .logo-bar .header-user-nav {
    position: absolute;
    top: 50px;
    left: 20px;
    right: 20px;
  }
}

.user_toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height:100%;
}

.user_toolbar .user-icon {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.user_toolbar .user-icon span {
  color: #333333;
  font-size: 16px;
  font-weight: 600;
}
.user_toolbar .user-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  padding-left: 10px;
  font-size: 12px;
  line-height: 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-left: 1px solid #BDBDBD;
  margin-left: 10px;
  width: calc(100% - 40px);
}

@media (min-width: 992px) {
  .user_toolbar .user-info {
    font-size: 15px;
    line-height: 20px;
  }
}
.user_toolbar .user-info .customer,
.user_toolbar .user-info .office {
  display: flex;
  align-items: center;
}
.user_toolbar .user-info .customer span,
.user_toolbar .user-info .office span {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.user_toolbar .user-info .evidence {
  font-weight: 600;
}

.user_toolbar .user-info .icon-edit {
  content: url(../img/edit-icon.png);
  width: 12px;
}

.user_toolbar .user-info a.link-modify {
  color: #333333;
  font-weight: 600;
}

.user_toolbar .user-info a.link-modify:hover {
  color: var(--primary-color);
}

.user_toolbar .user-info a.link-modify:hover .icon-edit {
  opacity: 0.4;
}

.user_toolbar .user-name-wrapper {
  position: relative;
}

.user_toolbar .my-icon {
  display: block;
  text-align: center;
}

.user_toolbar .my-icon.login::after {
  content: url(../img/user-icon.png) center;
}

.header-favourite-nav {
  position: relative;
}

.header-favourite-nav .my-icon {
  width: 30px;
  height: 30px;
  display: inline-block;
}

.header-favourite-nav .my-icon.favourite {
  content: url(../img/wishlist-icon.png);
}

.header-favourite-nav .my-icon.favourite.disabled {
  opacity: 0.5;
}

.header-favourite-nav .favourite-quantity-wrap {
  position: absolute;
  top: -4px;
  right: -8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  z-index: 1;
  width: 20px;
  height: 20px;
  background-color: var(--btn-primary-bg-color);
  color:var(--btn-primary-txt-color);
  font-size: 12px;
  line-height: 20px;
  border-radius: 50%;
}

@media (min-width: 992px) {
  .header-favourite-nav .favourite-quantity-wrap {
    font-size: 16px;
    line-height: 24px;
  }
}

.header-favourite-nav .favourite-quantity-wrap .basket-quantity {
  z-index: 2;
  position: absolute;
}

.header-basket-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: center;
  position: relative;
}

.header-basket-nav .my-icon {
  width: 30px;
  height: 30px;
  display: inline-block;
}

.header-basket-nav .my-icon.basket {
  content: url(../img/basket-icon.png);
}

.header-basket-nav .basket-quantity-wrap {
  position: absolute;
  top: -4px;
  right: -8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  z-index: 1;
  width: 20px;
  height: 20px;
  background-color: var(--btn-primary-bg-color);
  color:var(--btn-primary-txt-color);
  font-size: 12px;
  line-height: 20px;
  border-radius: 50%;
}

@media (min-width: 992px) {
  .header-basket-nav .basket-quantity-wrap {
    font-size: 18px;
    line-height: 27px;
  }
}

.header-basket-nav .basket-quantity-wrap .basket-quantity {
  z-index: 2;
  position: absolute;
}

.user_toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.user_toolbar .dropdown {
  display: block !important;
}

.user_toolbar .dropdown .dropdown-toggle {
  cursor: pointer;
  font-weight: 600;
}

.user_toolbar .dropdown .dropdown-toggle:hover {
  color: var(--primary-color);
}

.user_toolbar .dropdown .dropdown-toggle::after {
  display: none;
}

.user_toolbar .dropdown-menu {
  margin-top: 25px;
  margin-left: -70px;
  text-align: center;
  border-radius: 0;
  border-top: 3px solid var(--primary-color);
}

.user_toolbar .dropdown-menu .dropdown-header {
  color: var(--primary-color);
}

.user_toolbar .dropdown-menu .dropdown-item:hover, .user_toolbar .dropdown-menu .dropdown-item:active {
  color: #333333;
  background-color: #F2F2F2;
}

.user_toolbar .dropdown-menu .logout-link {
  text-transform: uppercase;
}

.user_toolbar .dropdown-menu .item-menu:hover {
  text-decoration: underline;
  color: var(--primary-color);
}

.user_toolbar .agent_content a {
  font-weight: 600;
  color: #333333;
}

.user_toolbar .agent_content a:hover {
  text-decoration: underline;
}

.user_toolbar .my-icon {
  width: 30px;
  height: 30px;
}

.user_toolbar .my-icon.login {
  width: 30px;
  height: 30px;
  display: inline-block;
  content: url(../img/login-icon.png);
}

.logo-bar {
  background-color: white;
  padding: 30px 0;
}

.logo-bar .col-logo img {
  height: 30px;
}

.logo-bar .main-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.logo-bar .shop-shortlinks {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: end;
  -webkit-box-pack: end;
          justify-content: flex-end;
  text-align: right;
  gap: 15px;
}

.logo-bar .col-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
}

.logo-bar .col-search, .logo-bar .col-shortlinks {
	display: flex;
	align-items: center;
}

.logo-bar .col-shortlinks .nav-search {
  position: relative;
  margin-right: 15px;
}

.logo-bar .col-shortlinks .nav-search .form-control {
  position: relative;
  font-size: 14px;
  line-height: 21px;
  width: 204px;
  height: 30px;
  border: 0;
  padding: 5px 35px 5px 5px;
  border-bottom: 2px solid #BDBDBD;
}

@media (min-width: 992px) {
  .logo-bar .col-shortlinks .nav-search .form-control {
    font-size: 20px;
    line-height: 30px;
  }
}

.logo-bar .col-shortlinks .nav-search .form-control::-webkit-input-placeholder {
  color: black;
}

.logo-bar .col-shortlinks .nav-search .form-control:-ms-input-placeholder {
  color: black;
}

.logo-bar .col-shortlinks .nav-search .form-control::-ms-input-placeholder {
  color: black;
}

.logo-bar .col-shortlinks .nav-search .form-control::placeholder {
  color: black;
}

.logo-bar .col-shortlinks .nav-search .search-button {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background: url(../img/search-icon.png) center center no-repeat;
  border: 0;
  outline: 0;
}

.logo-bar .col-shortlinks .nav-search .search-button:focus {
  border: 0;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.logo-bar .col-shortlinks .nav-account {
  float: left;
  margin-left: 20px;
}

.logo-bar .col-shortlinks .nav-wishlist {
  float: left;
  margin-left: 20px;
}

.logo-bar .col-shortlinks .nav-cart {
  float: left;
  margin-left: 20px;
}

.mobile-header-wrap {
  background: #F2F2F2;
  border: 1px solid #BDBDBD;
  padding: 10px 0;
}

.menu-bar {
	background: #F2F2F2;
	box-shadow: 0 2px 4px 0 rgba(0,0,0,0.3);
}
.menu-bar .categoryMenuHorizontal {
	height: auto !important;
}
.menu-bar .menuview_horizontal,
.menu-bar .menuview_flat {
	position: static !important;
	width: 100% !important;
	height: auto !important;
}
.menu-bar .menuview_horizontal ul,
.menu-bar .menuview_flat ul {
	background: #F2F2F2;
}
.menu-bar .menuview_horizontal li,
.menu-bar .menuview_flat li {
	position: relative;
	display: block;
	white-space: nowrap;
}
/* reset properties */
.menu-bar .menuview_horizontal ul,
.menu-bar .menuview_horizontal li {
	margin: 0 !important;
	visibility: visible !important;
	opacity: 1 !important;
	transition: none !important;
}
.menu-bar .menuview_horizontal li {
	top: 0 !important;
}
.menu-bar .menuview_horizontal > ul > li:last-of-type {
	display: none !important;
}
/* horizontal */
.menu-bar .menuview_horizontal > ul,
.menu-bar .menuview_flat > ul {
	display: flex !important;
	flex-flow: row nowrap;
	justify-content: space-between;
}
.menu-bar .menuview_horizontal > ul > li,
.menu-bar .menuview_flat > ul > li {
	display: inline-block;
}
/* dropdown */
.menu-bar .menuview_horizontal > ul ul,
.menu-bar .menuview_flat > ul ul {
	position: absolute;
	top: 100% !important;
	display: none !important;
	box-shadow: 0 2px 4px 0 rgba(0,0,0,0.3);
}
.menu-bar .menuview_horizontal > ul ul ul,
.menu-bar .menuview_flat > ul ul ul {
	top: 0 !important;
	left: 100% !important;
}
.menu-bar .menuview_horizontal li.parent:hover > ul,
.menu-bar .menuview_flat li.parent:hover > ul {
	display: block !important;
}
/* anchors */
.menu-bar .menuview_horizontal a,
.menu-bar .menuview_flat a {
	position: relative;
	display: block;
	height: auto;
	padding: 25px;
	font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif !important;
	font-size: 12px !important;
	font-weight: 500;
	line-height: 20px;
	color: #333333;
	text-transform: uppercase;
}
.menu-bar .menuview_horizontal a:hover,
.menu-bar .menuview_flat a:hover {
  background-color: var(--btn-primary-bg-color);
  color:var(--btn-primary-txt-color);
}
.menu-bar .menuview_horizontal a.parent,
.menu-bar .menuview_flat a.parent {
	padding-right: 45px !important;
}
.menu-bar .menuview_horizontal a.parent::after,
.menu-bar .menuview_flat a.parent::after {
	content: "";
	width: 10px;
	height: 10px;
	position: absolute;
	top: 50%;
	right: 23px;
	margin-top: -8px;
	border: 0;
	border-bottom: 1px solid #333333;
	border-right: 1px solid #333333;
	transform: rotate(45deg);
}
.menu-bar .menuview_horizontal a.parent:hover::after,
.menu-bar .menuview_flat a.parent:hover::after {
	border-color: #ffffff;
}
.menu-bar .menuview_horizontal > ul ul a.parent::after,
.menu-bar .menuview_flat > ul ul a.parent::after {
	margin-top: -5px;
	transform: rotate(-45deg);
}
.scroll-active .menu-bar .menuview_horizontal a,
.scroll-active .menu-bar .menuview_flat a {
	font-size: 14px;
	padding: 20px 25px;
}
/* megamenu */
.menu-bar .menuview_horizontal .megamenu {
  background: #F2F2F2 !important;
	box-shadow: 0 2px 4px 0 rgba(0,0,0,0.3);
}
@media (min-width: 992px) {
	.menu-bar .menuview_horizontal a,
	.menu-bar .menuview_flat a {
		font-size: 16px !important;
		line-height: 20px;
	}
}
.menu-bar nav {
  position: relative;
  display: block;
  margin-bottom: 0;
}

.menu-bar nav ul.global-nav {
  background: #333333;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  position: relative;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
}

.menu-bar nav ul.global-nav li {
  vertical-align: middle;
  padding: 0;
}

.menu-bar nav ul.global-nav li > a {
  color: white;
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  padding: 15px 12px;
  height: auto;
  font-size: 12px;
  line-height: 18px;
  position: relative;
  display: block;
}

@media (min-width: 992px) {
  .menu-bar nav ul.global-nav li > a {
    font-size: 18px;
    line-height: 27px;
  }
}

.menu-bar nav ul.global-nav li > a:hover {
  background-color: var(--btn-primary-bg-color);
  color:var(--btn-primary-txt-color);
}

.menu-bar nav ul.global-nav li.dropdown > a {
  padding-right: 25px;
}

.menu-bar nav ul.global-nav li.dropdown > a::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 8px;
  margin-top: -8px;
  border: 0;
  border-bottom: 1px solid white;
  border-right: 1px solid white;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.main-home {
  background: #F2F2F2;
  min-height: 500px;
  padding: 0 0 20px 0;
}
.main-home.carousel {
    padding: 0;
    min-height: 100px;
}
.main-home.carousel .contentsFlex{
    margin-bottom:0;
}
.main-home .contentsFlex {
  position: relative;
  text-align: center;
  margin-bottom: 20px;
  z-index: 0;
}

.main-home .contentsFlex img {
  width: 100%;
  display: block;
}

.main-home .contentsFlex .flexslider {
  margin: 0;
}

.main-home .contentsFlex .flexslider .slides img {
    max-width: 100%;
    height: auto;
}

.main-home .contentsFlex .flex-control-nav {
    z-index: 1;
}

.main-home .contentsFlex .flex-control-paging li a {
  border: 0;
}

.main-home .contentsFlex .flex-direction-nav a {
  margin: -51px 0 0;
}

.main-home .contentsFlex .caption {
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 15%;
  z-index: 1;
  text-align: left;
  transform: translate(0%,-50%);
  display: block;
  opacity: 1;
}

.main-home .contentsFlex .caption .slide-content h2 {
  color: #ffffff;
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 19px;
  text-transform: uppercase;
  line-height: 19px;
  display: block;
  padding: 0 0 10px 0;
  margin: 0px;
  position: relative;
  font-weight: 700;
}
@media (max-width: 767px) {
  .main-home .contentsFlex .caption .slide-content h2 {
    display:none;
  }
}
@media (min-width: 992px) {
  .main-home .contentsFlex .caption .slide-content h2 {
    font-size: 30px;
    line-height: 50px;
  }
}

.main-home .contentsFlex .caption .slide-content a {
  color:var(--btn-dark-primary-txt-color);
  background-color: var(--btn-dark-primary-bg-color);
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  font-size: 10px;
  line-height: 15px;
  padding: 25px 30px;
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.5);
  font-weight: 700;
  display: inline-block;
}

@media (min-width: 992px) {
  .main-home .contentsFlex .caption .slide-content a {
    font-size: 20px;
    line-height: 24px;
  }
}

.main-home .contentsFlex .caption .slide-content a:hover {
  background-color: var(--btn-dark-primary-hover-bg-color);
  color:var(--btn-dark-primary-hover-txt-color);
}

.main-general h1 {
  color: #4F4F4F;
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 2.2rem;
  line-height: 1.25;
  display: block;
  text-align: center;
  padding: 20px;
  margin-top: 5px;
  margin-bottom: 25px;
  position: relative;
}

.main-general h1::after {
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -35px;
  bottom: 0;
  width: 70px;
  height: 1px;
  border-bottom: 3px solid var(--primary-color);
}

.main-general p {
  font-size: 14px;
  line-height: 22px;
  color: #828282;
}

@media (min-width: 992px) {
  .main-general p {
    font-size: 20px;
    line-height: 30px;
  }
}

.main-home-categories {
  background: none;
  padding-bottom: 20px;
}

.newsletter-section {
  background: #F2F2F2;
  padding: 25px 0 60px 0;
  text-align: center;
}
@media(max-width:768px){
	.newsletter-section .row {
		display: flex;
		flex-direction: column;
	}
	.newsletter-section .col {
		padding: 10px 0px;
	}
}

.newsletter-section.dark {
  background: #333333;
}

@media(max-width:768px){
	.newsletter-section .col h1 {
		font-size: 30px !important;
	}
}

.newsletter-section.dark h3 {
  color: white;
}

.newsletter-section h3 {
  color: #4F4F4F;
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 2.2rem;
  line-height: 1.25;
  display: block;
  text-align: center;
  padding: 20px;
  margin-top: 5px;
  margin-bottom: 25px;
  position: relative;
}

.newsletter-section h3::after {
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -35px;
  bottom: 0;
  width: 70px;
  height: 1px;
  border-bottom: 3px solid var(--primary-color);
}

.newsletter-section .newsletter-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
      align-items: stretch;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
      justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.newsletter-section .newsletter-form input[type="text"] {
  width: 260px;
}

.breadcrumb {
  margin: 0;
  background: none;
  text-align: center;
  color: #333;
  width: auto !important;
  height: auto !important;
  opacity: 1 !important;
  font-weight: 700;
  text-align: left;
  padding: 25px 0 5px 0;
}

.breadcrumb a {
  font-weight: 500;
  color: #333333;
}

.breadcrumb a:hover {
  color: var(--primary-color);
}

.breadcrumb a.prev, .breadcrumb a.prev:hover {
  opacity: 0.5;
}

.breadcrumb > div {
  width: 100% !important;
  position: relative !important;
  height: auto !important;
}

main .title-space, main .contentText {
  padding: 0;
}

main .title-space h1, main .contentText h1 {
  color: #4F4F4F;
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 2.2rem;
  line-height: 1.25;
  display: block;
  text-align: center;
  padding: 20px;
  margin-top: 5px;
  margin-bottom: 25px;
  position: relative;
  font-size: 18px;
  line-height: 23px;
}

main .title-space h1::after, main .contentText h1::after {
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -35px;
  bottom: 0;
  width: 70px;
  height: 1px;
  border-bottom: 3px solid var(--primary-color);
}

@media (min-width: 992px) {
  main .title-space h1, main .contentText h1 {
    font-size: 35px;
    line-height: 44px;
  }
}

.main-section, .product-section {
  padding: 20px 0;
}

.basket-section h3 {
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 20px;
}

@media (min-width: 992px) {
  .basket-section h3 {
    font-size: 24px;
    line-height: 36px;
  }
}

.basket-section .items-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.basket-section .items-list .column-title {
  display: block;
  font-size: 10px;
  line-height: 15px;
  color: #828282;
  margin-bottom: 3px;
}

@media (min-width: 992px) {
  .basket-section .items-list .column-title {
    font-size: 20px;
    line-height: 30px;
  }
}

.basket-section .items-list .column-value {
  font-size: 14px;
  line-height: 21px;
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
}

@media (min-width: 992px) {
  .basket-section .items-list .column-value {
    font-size: 24px;
    line-height: 36px;
  }
}

.basket-section .items-list .product-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #F2F2F2;
  padding: 25px 15px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 20px;
}

.basket-section .items-list .product-item .product-image {
  width: 100px;
  height: 150px;
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.basket-section .items-list .product-item .product-image a {
  display: block;
  width: 100%;
  height: 100%;
}

.basket-section .items-list .product-item .product-image a img {
  max-height: 100%;
}

.basket-section .items-list .product-item .product-features {
  position: relative;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 15px;
}

.basket-section .items-list .product-item .product-features .product-info {
  width: auto;
  padding-right: 30px;
}

.basket-section .items-list .product-item .product-features .product-info a.product-name {
  font-size: 14px;
  line-height: 21px;
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  color: #333333;
}

@media (min-width: 992px) {
  .basket-section .items-list .product-item .product-features .product-info a.product-name {
    font-size: 24px;
    line-height: 36px;
  }
}

.basket-section .items-list .product-item .product-features .product-info a.product-name:hover {
  color: var(--primary-color);
}

.basket-section .items-list .product-item .product-features .product-quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.basket-section .items-list .product-item .product-features .product-quantity .column-title {
  margin-right: 10px;
}

.basket-section .items-list .product-item .product-features .product-quantity .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}

.basket-section .items-list .product-item .product-features .product-quantity .form-group .form-control {
  width: 50px;
  height: 30px;
  text-align: right;
  border-radius: 4px;
}

.basket-section .items-list .product-item .product-features .product-quantity .form-group .icon-update {
  cursor: pointer;
  margin-left: 10px;
}

.basket-section .items-list .product-item .product-features .product-quantity .form-group .icon-update::after {
  content: url(../img/update-icon.png);
  zoom: 70%;
}

.basket-section .items-list .product-item .product-features .product-prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.basket-section .items-list .product-item .product-features .product-prices .product-price {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.basket-section .items-list .product-item .product-features .product-remove {
  position: absolute;
  top: 0;
  right: 0;
}

.basket-section .items-list .product-item .product-features .product-remove .column-title {
  display: none;
}

.basket-section .items-list .product-item .product-features .product-remove .icon-trash {
  cursor: pointer;
}

.basket-section .items-list .product-item .product-features .product-remove .icon-trash::after {
  content: url(../img/trash-icon.png);
  zoom: 70%;
}

.basket-section .basket-totals {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.basket-section .basket-totals h4 {
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  font-size: 14px;
  line-height: 21px;
  margin: 25px 0 20px;
}

@media (min-width: 992px) {
  .basket-section .basket-totals h4 {
    font-size: 24px;
    line-height: 36px;
  }
}

.basket-section .basket-totals .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.basket-section .basket-totals .form-group label {
  width: 250px;
  font-size: 13px;
  line-height: 19px;
  line-height: 1;
}

@media (min-width: 992px) {
  .basket-section .basket-totals .form-group label {
    font-size: 22px;
    line-height: 33px;
  }
}

.basket-section .basket-totals .form-group .form-control {
  width: 185px;
  height: 56px;
  border: 0;
  background: #E0E0E0;
}

.basket-section .basket-totals .col-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.basket-section .basket-totals .col-data .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.basket-section .basket-totals .col-totals {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.basket-section .basket-totals .col-totals label {
  display: block;
}

.basket-section .basket-totals .col-totals .big-price {
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  margin-top: 10px;
  padding-left: 30px;
}

@media (min-width: 992px) {
  .basket-section .basket-totals .col-totals .big-price {
    font-size: 32px;
    line-height: 48px;
  }
}

.basket-section .basket-totals .col-totals .col-prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #E0E0E0;
}

.basket-section .basket-totals .col-totals .col-prices .title-prices {
  display: none;
}

.basket-section .basket-totals .col-totals .col-prices .prices-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px 0;
}

.basket-section .basket-totals .col-totals .col-prices .prices-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: 12px;
  line-height: 18px;
}

@media (min-width: 992px) {
  .basket-section .basket-totals .col-totals .col-prices .prices-list li {
    font-size: 16px;
    line-height: 24px;
  }
}

.basket-section .basket-totals .col-totals .col-prices .prices-list li.first-row {
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid #BDBDBD;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
}

@media (min-width: 992px) {
  .basket-section .basket-totals .col-totals .col-prices .prices-list li.first-row {
    font-size: 16px;
    line-height: 24px;
  }
}

.basket-section .basket-totals .col-totals .col-prices .prices-list li.first-row .label-price {
  padding: 0 30px 0 0;
}

.basket-section .basket-totals .col-totals .col-prices .prices-list li.first-row .price {
  font-weight: 700;
}

.basket-section .basket-totals .col-totals .col-prices .prices-list li .label-price {
  width: 52%;
  text-align: right;
  padding: 0 30px 0 0;
}

.basket-section .basket-totals .col-totals .col-prices .prices-list li .price {
  width: 35%;
  text-align: left;
}

.basket-section .basket-totals .col-totals .col-buttons {
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.basket-section .basket-totals .col-totals .col-buttons .big-label-price {
  display: none;
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  padding: 0 30px;
  font-size: 18px;
  line-height: 22px;
  font-weight: 300;
  margin-top: 25px;
}

@media (min-width: 992px) {
  .basket-section .basket-totals .col-totals .col-buttons .big-label-price {
    font-size: 32px;
    line-height: 32px;
  }
}

.basket-section .basket-totals .col-totals .col-buttons .big-label-price .title {
  padding-right: 30px;
}

.basket-section .basket-totals .col-totals .col-buttons .basket-total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 10px;
}

.basket-section .basket-totals .col-totals .col-buttons .basket-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 10px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.basket-section .basket-totals .col-totals .col-buttons .basket-links .btn {
  font-size: 14px;
  line-height: 21px;
  padding: 15px;
  margin: 0 0 10px 0;
}

@media (min-width: 992px) {
  .basket-section .basket-totals .col-totals .col-buttons .basket-links .btn {
    font-size: 20px;
    line-height: 30px;
  }
}

.basket-section .basket-totals .prices-summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.basket-section .basket-totals .prices-summary label {
  display: block;
}

.basket-section .basket-totals .prices-summary .label-price {
  font-size: 16px;
  line-height: 1;
}

.basket-section .basket-totals .prices-summary .big-label-price {
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  font-size: 18px;
  line-height: 22px;
  font-weight: 300;
  margin-top: 10px;
}

@media (min-width: 992px) {
  .basket-section .basket-totals .prices-summary .big-label-price {
    font-size: 32px;
    line-height: 48px;
  }
}

.basket-section .basket-totals .prices-summary .big-price {
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  margin-top: 10px;
}

@media (min-width: 992px) {
  .basket-section .basket-totals .prices-summary .big-price {
    font-size: 32px;
    line-height: 48px;
  }
}

.basket-section .basket-totals .prices-summary .col-buttons {
  padding-left: 30px;
  text-align: right;
}

.basket-section .basket-totals .btn-primary {
  border-radius: 4px;
  background-color: var(--btn-primary-bg-color);
  color:var(--btn-primary-txt-color);
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  padding: 10px 20px;
  outline: none;
  border: none;
  padding: 20px 20px;
  font-size: 14px;
  line-height: 21px;
  font-weight: 600;
}

@media (min-width: 992px) {
  .basket-section .basket-totals .btn-primary {
    font-size: 24px;
    line-height: 36px;
  }
}

.basket-section .basket-totals .btn-primary:hover {
  background-color:var(--btn-primary-hover-bg-color);
  color: var(--btn-primary-hover-txt-color);
  border: none;
  -webkit-box-shadow: 1px 1px 8px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 1px 1px 8px 0px rgba(0, 0, 0, 0.5);
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
}

.basket-section .basket-totals .btn-secondary {
  border-radius: 4px;
  color: #333333;
  background: white;
  border: none;
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  padding: 10px 20px;
  outline: none;
  padding: 20px 20px;
  font-size: 14px;
  line-height: 21px;
  font-weight: 600;
}

@media (min-width: 992px) {
  .basket-section .basket-totals .btn-secondary {
    font-size: 24px;
    line-height: 36px;
  }
}

.basket-section .basket-totals .btn-secondary:hover, .basket-section .basket-totals .btn-secondary:active, .basket-section .basket-totals .btn-secondary:focus {
  color: var(--btn-dark-primary-hover-bg-color);
  background: var(--btn-dark-primary-hover-bg-color);
  border: none;
  -webkit-box-shadow: 1px 1px 8px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 1px 1px 8px 0px rgba(0, 0, 0, 0.5);
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
}

.basket-section .basket-totals h3 {
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  font-size: 14px;
  line-height: 21px;
}

@media (min-width: 992px) {
  .basket-section .basket-totals h3 {
    font-size: 24px;
    line-height: 36px;
  }
}

.basket-section .basket-details {
  font-size: 13px;
  line-height: 19px;
  padding: 10px 0;
}

@media (min-width: 992px) {
  .basket-section .basket-details {
    font-size: 22px;
    line-height: 33px;
  }
}

.basket-section .basket-details .form-control {
  border: 2px solid #BDBDBD;
  font-size: 13px;
  line-height: 19px;
}

@media (min-width: 992px) {
  .basket-section .basket-details .form-control {
    font-size: 22px;
    line-height: 33px;
  }
}

.basket-section .basket-details .notes {
  height: 130px;
}

.basket-section .basket-details .col-basket-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding: 0 0 0 40px;
}

.basket-section .basket-details .col-basket-details > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 50%;
  padding: 0 30px 0 0;
}

.basket-section .basket-details .col-basket-details .title {
  font-weight: 600;
}

.basket-section .summary-header {
  padding: 20px 0;
}

.basket-section .summary-header .summary-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.basket-section .summary-header .summary-info .summary-info-item {
  padding-right: 0;
  font-size: 12px;
  line-height: 18px;
}

@media (min-width: 992px) {
  .basket-section .summary-header .summary-info .summary-info-item {
    font-size: 18px;
    line-height: 27px;
  }
}

.basket-section .summary-header .summary-info .summary-info-item .title {
  font-weight: 600;
}

.modify-box .modify-box-header {
  padding: 20px 0;
}

.modify-box .modify-box-header h4 {
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  font-size: 14px;
  line-height: 21px;
}

@media (min-width: 992px) {
  .modify-box .modify-box-header h4 {
    font-size: 24px;
    line-height: 36px;
  }
}

.modify-box .modify-box-main {
  font-size: 13px;
  line-height: 19px;
}

@media (min-width: 992px) {
  .modify-box .modify-box-main {
    font-size: 22px;
    line-height: 33px;
  }
}

.modify-box .modify-box-main ul li input {
  display: none;
}

.modify-box .modify-box-main ul li input + label {
  display: block;
  padding: 0px 0 20px 40px;
  margin: 0;
  cursor: pointer;
  position: relative;
  color: #4F4F4F;
}

.modify-box .modify-box-main ul li input + label:hover {
  color: var(--primary-color);
}

.modify-box .modify-box-main ul li input + label::before {
  content: url(../img/unchecked.png);
  position: absolute;
  width: 30px;
  height: 30px;
  top: 0;
  left: 0px;
  margin: -3px 0 0 0px;
}

.modify-box .modify-box-main ul li input:checked + label::before {
  content: url(../img/checked.png);
}

.modify-box .modify-box-footer {
  padding: 20px 0;
  text-align: right;
}

.modify-box .modify-box-footer .btn.btn-primary {
  color: white;
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  font-size: 14px;
  line-height: 22px;
  padding: 20px 30px;
}

@media (min-width: 992px) {
  .modify-box .modify-box-footer .btn.btn-primary {
    font-size: 20px;
    line-height: 30px;
  }
}

.modify-box .modify-box-footer .btn.btn-secondary {
  border-radius: 4px;
  color: #333333;
  background: white;
  border: none;
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  padding: 10px 20px;
  outline: none;
  font-size: 14px;
  line-height: 22px;
  padding: 20px 30px;
}

@media (min-width: 992px) {
  .modify-box .modify-box-footer .btn.btn-secondary {
    font-size: 20px;
    line-height: 30px;
  }
}

.modify-box .modify-box-footer .btn.btn-secondary:hover, .modify-box .modify-box-footer .btn.btn-secondary:active, .modify-box .modify-box-footer .btn.btn-secondary:focus {
  background-color: var(--btn-primary-hover-bg-color);
  color:var(--btn-primary-hover-txt-color);
  border: none;
  -webkit-box-shadow: 1px 1px 8px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 1px 1px 8px 0px rgba(0, 0, 0, 0.5);
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
}

.checkout-section .checkout-box {
  width: 100%;
  background: #E0E0E0;
  padding: 20px 30px;
  margin-bottom: 20px;
  min-height: 200px;
  position: relative;
}

.checkout-section .checkout-box .icon-modify {
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
}

.checkout-section .checkout-box .icon-modify::after {
  content: url(../img/modify-icon.png);
}

.checkout-section .checkout-box .icon-modify.active::after {
  content: url(../img/modify-icon-active.png);
}

.checkout-section .checkout-box h3 {
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 15px;
}

@media (min-width: 992px) {
  .checkout-section .checkout-box h3 {
    font-size: 24px;
    line-height: 36px;
  }
}

.checkout-section .checkout-box .content {
  font-size: 13px;
  line-height: 19px;
  line-height: 33px;
  color: #4F4F4F;
}

@media (min-width: 992px) {
  .checkout-section .checkout-box .content {
    font-size: 22px;
    line-height: 33px;
  }
}

.checkout-section .checkout-functions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.checkout-section .checkout-functions .checkout-box {
  width: 100%;
  background: #E0E0E0;
  padding: 20px;
  margin-bottom: 10px;
  min-height: auto;
  position: relative;
}

.checkout-section .checkout-functions .checkout-box .icon-modify {
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
}

.checkout-section .checkout-functions .checkout-box .icon-modify::after {
  content: url(../img/modify-icon.png);
}

.checkout-section .checkout-functions .checkout-box .icon-modify.active::after {
  content: url(../img/modify-icon-active.png);
}

.checkout-section .checkout-functions .checkout-box h3 {
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 15px;
}

@media (min-width: 992px) {
  .checkout-section .checkout-functions .checkout-box h3 {
    font-size: 24px;
    line-height: 36px;
  }
}

.checkout-section .checkout-functions .checkout-box .content {
  font-size: 13px;
  line-height: 19px;
  color: #4F4F4F;
}

@media (min-width: 992px) {
  .checkout-section .checkout-functions .checkout-box .content {
    font-size: 22px;
    line-height: 33px;
  }
}

.footer-shortlinks {
  color: #333333;
  font-size: 12px;
  line-height: 18px;
  padding: 20px 0;
}

@media (min-width: 992px) {
  .footer-shortlinks {
    font-size: 18px;
    line-height: 27px;
  }
}

.footer-shortlinks .contentText {
  color: #333333;
}

.footer-shortlinks .footer-box{
    padding: 0px 20px;
}
.footer-shortlinks .footer-box .footer-box-title {
  padding: 15px 0px;
}

.footer-shortlinks .footer-box .footer-box-title h4 {
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  color: var(--primary-color);
  font-size: 14px;
  line-height: 22px;
  font-weight: 700;
  margin: 0;
}

@media (min-width: 992px) {
  .footer-shortlinks .footer-box .footer-box-title h4 {
    font-size: 20px;
    line-height: 30px;
  }
}

.footer-shortlinks .footer-box .footer-box-title.nav-title {
  cursor: pointer;
  border-bottom: 1px solid #E0E0E0;
}

.footer-shortlinks .footer-box .footer-box-title.nav-title h4 {
  position: relative;
}

/*
.footer-shortlinks .footer-box .footer-box-title.nav-title h4::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 4px;
  right: 10px;
  border: 0;
  border-bottom: 1px solid #333333;
  border-right: 1px solid #333333;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
}

.footer-shortlinks .footer-box .footer-box-title.nav-title h4.collapsed::after {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
*/

.footer-shortlinks .footer-box .categoryMenuFlat {
 /* display: none;*/
}

.footer-shortlinks .social-nav {
  margin-top: 15px;
}

.footer-shortlinks ul.topmenu {
  display: block;
}

.footer-shortlinks ul.topmenu li {
  display: block;
  padding: 5px 0;
}

.footer-shortlinks ul.topmenu li a {  
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  color: #4F4F4F;
}

.footer-shortlinks ul.topmenu li a:hover {
  color: var(--primary-color);
}

.footer-shortlinks .content > div {
  margin: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
}

.mobile-footer .mobile-footer-top {
  padding: 20px 0;
}

.mobile-footer .mobile-footer-top h4 {
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  color: #333333;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  margin: 0;
  display: block;
}

@media (min-width: 992px) {
  .mobile-footer .mobile-footer-top h4 {
    font-size: 20px;
    line-height: 30px;
  }
}

.mobile-footer .mobile-footer-top .mobile-social-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.mobile-footer .mobile-footer-top .mobile-social-wrap .mobile-social-content {
  display: block;
}

.mobile-footer .mobile-footer-top .mobile-payment-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.mobile-footer .mobile-footer-top .mobile-payment-wrap .mobile-payment-content {
  display: block;
}

.mobile-footer .mobile-footer-bottom {
  font-size: 0.8rem;
  background: #E0E0E0;
}

.mobile-footer .mobile-footer-bottom .mobile-address {
  padding: 20px 0;
  text-align: center;
}

.mobile-footer .mobile-footer-bottom .mobile-copyright {
  padding: 20px 0;
  text-align: center;
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  color: #828282;
}

.bottom-bar {
  background-color: #333;
  padding: 25px 0;
}

.bottom-bar .copy {
  font-size: 0.9rem;
  color: #828282;
}

.bottom-bar .payment-ways {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
      align-items: stretch;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.bottom-bar .payment-ways li {
  list-style: none;
  margin: 0 5px;
}

.bottom-bar .col-copyright {
  text-align: left;
  font-size: 14px;
  color: #ffffff;
}

.bottom-bar .col-payments {
  text-align: right;
}

.list-title-home {
  background: #333333;
  height: 30px;
  position: relative;
}

.list-title-home h2 {
  color: white;
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  padding: 5px 10px;
}

@media (min-width: 992px) {
  .list-title-home h2 {
    font-size: 24px;
    line-height: 30px;
  }
}

.home-category-list {
  position: relative;
  margin-top: 20px;
}

.home-category-list .scrollitems {
  overflow: visible !important;
}

.home-category-list .product-list .product-name h3 {
  text-align: center;
}

.product {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: white;
  position: relative;
}

.product .product-discount {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 6px;
  right: 6px;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  z-index: 6;
  background-color: var(--light-bg-color);
  color: var(--light-txt-color);
}

.product .product-image {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
      align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
      justify-content: center;
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  margin: 10px auto 0;
  max-width: 100%;
  height: 120px;
}

.product .product-image a {
  display: block;
}

.product .product-image img {
  max-height: 100px;
  width: auto !important;
}

.product .product-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 125px;
}

.product .product-info .product-name h3 {
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  color: #333333;
  font-size: 14px;
  line-height: 22px;
  height: 22px;
  margin: 0;
  overflow: hidden;
  font-weight: 500;
}

@media (min-width: 992px) {
  .product .product-info .product-name h3 {
    font-size: 20px;
    line-height: 30px;
  }
}

.product .product-info .product-name:hover h3 {
  color: var(--primary-color);
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
}

.product .product-info .product-prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
      justify-content: center;
  font-size: 12px;
  line-height: 18px;
}

@media (min-width: 992px) {
  .product .product-info .product-prices {
    font-size: 18px;
    line-height: 27px;
  }
}

.product .product-info .product-prices .end-price {
  color: var(--dark-color);
  font-weight: 700;
  padding: 0 15px;
  font-size: 24px;
}

.product .product-info .product-prices .prev-price {
  color: #4f4f4f;
  font-weight: 400;
  padding: 0 10px;
  position: relative;
}

.product .product-info .product-prices .prev-price::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: 0px;
  margin-left: -35px;
  width: 70px;
  height: 1px;
  border-bottom: 1px solid #808080;
  -webkit-transform: rotate(-15deg);
  transform: rotate(-15deg);
}

.product .product-info .product-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
      justify-content: center;
  font-size: 12px;
  line-height: 18px;
  margin-top: 5px;
}

@media (min-width: 992px) {
  .product .product-info .product-links {
    font-size: 12px;
    line-height: 27px;
  }
}

.product .product-info .product-links .button {
  position: relative;
  line-height: 40px;
  padding: 0px 8px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 0;
}

.product .product-info .product-links .button::after {
  content: "\ea1d";
  display: none;
  font-family: 'icons8_win10';
  font-size: 30px;
  text-align: center;
  position: absolute;
  top: 50%;
  right: 6px;
  margin-top: -21px;
  line-height: 40px;
  font-weight: 400;
}

.product .product-info .product-links .goto-sheet a{
	display: inline-block;
	padding: 0 15px;
}

.product .product-info .product-links .goto-sheet .button::after {
    background: none;
    content: "";
}

.product .product-info .product-links .heart-icon {
  text-decoration: none;
  margin-left: 10px;
}

.product .product-info .product-links .btn-add-favourite {
  content: url(../img/heart-icon.png);
  cursor: pointer;
  margin-left: 5px;
}

.product .product-info .product-links .btn-add-favourite.selected {
  content: url(../img/heart-icon-selected.png);
}

.product .product-info .product-links .icon-trash {
  cursor: pointer;
  margin-left: 10px;
}

.product .product-info .product-links .icon-trash::after {
  content: url(../img/trash-icon.png);
  zoom: 70%;
}

.product .product-conv {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  margin: 3px 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
}
@media (max-width: 576px) {
  .product .product-conv {
    font-size: 12px;
    line-height: 14px;
  }
}

.product:hover {
  -webkit-box-shadow: 0.2px 0.2px 20px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0.2px 0.2px 20px 0px rgba(0, 0, 0, 0.15);
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
}

.main-home-section {
  min-height: 190px;
  position: relative;
  padding-top: 0;
}

.main-home-section .section-title {
  text-align: center;
  height: 190px;
  padding: 25px;
  margin-right: -10px;
  display: -webkit-box;
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
      justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
      flex-direction: column;
  background: #333333;
}

.main-home-section .section-title h2 {
  color: white;
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  position: relative;
  font-size: 13px;
  line-height: 19px;
  padding-bottom: 20px;
}

@media (min-width: 992px) {
  .main-home-section .section-title h2 {
    font-size: 30px;
    line-height: 40px;
  }
}

.main-home-section .section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -35px;
  bottom: 0;
  width: 70px;
  height: 1px;
  border-bottom: 3px solid var(--primary-color);
}

.main-home-section .recommended-list-wrap {
  margin-top: 10px;
}

.main-home-section .recommended-list .product-name h3 {
  text-align: center;
}

.main-home-section .related-list {
  margin-left: -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
      align-items: stretch;
  -webkit-box-pack: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.sidebar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
      align-items: stretch;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
      justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.sidebar .filter-navigation-trigger {
  display: none;
}

.sidebar .filter-navigation-trigger:checked + .filter-navigation {
  display: block !important;
}

.sidebar .filter-navigation-toggle {
  display: block;
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  font-size: 14px;
  line-height: 21px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
  cursor: pointer;
}

@media (min-width: 992px) {
  .sidebar .filter-navigation-toggle {
    font-size: 24px;
    line-height: 36px;
  }
}

.sidebar .filter-navigation-toggle::after {
  content: url(../img/filter-icon.png);
  cursor: pointer;
  margin-left: 5px;
}

.sidebar .layerFilter, .sidebar .layerFilter > div {
  height: auto !important;
}

.sidebar .tblLayerNavigator {
  padding: 0 0 45px 0;
}

.sidebar .tblLayerNavigator .LayerNavigatorSection {
  padding: 0 0 20px 0;
}

.sidebar .tblLayerNavigator .LayerNavigatorSection .layerTitle {
  display: block;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 0px 20px 20px 0px;
  position: relative;
  color: var(--primary-color);
}

.sidebar table.tblLayerNavigator .layerTitle {
  display: block;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 0px 20px 20px 0px;
  position: relative;
  color: var(--primary-color);
}
.sidebar .tblLayerNavigator .tdLayerNavigator {
  padding: 0 0 20px 0;
}

@media (min-width: 992px) {
  .sidebar .tblLayerNavigator .LayerNavigatorSection .layerTitle {
    font-size: 20px;
  }
}

@media (min-width: 992px) {
  .sidebar table.tblLayerNavigator .layerTitle {
    font-size: 20px;
  }
}

.sidebar .tblLayerNavigator ul {
    background: #f2f2f2;
    padding: 20px;
}

.sidebar .tblLayerNavigator .LayerNavigatorSection ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  position: relative;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.sidebar .tblLayerNavigator .LayerNavigatorSection ul li input {
  opacity: 0.5;
  display: none;
}

.sidebar .tblLayerNavigator .LayerNavigatorSection ul li input + label {
  margin: 4px;
  color: #828282;
  font-size: 16px;
  line-height: 28px;
  padding: 0px 15px;
  background: white;
  border: 1px solid #808080;
  cursor: pointer;
  border-radius: 16px;
}

.sidebar .tblLayerNavigator .LayerNavigatorSection ul li input + label:hover {
  color: white;
  background: #808080;
  border: 1px solid #808080;
}

.sidebar .tblLayerNavigator .LayerNavigatorSection ul li input:checked + label {
  color: white;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.sidebar-section {
  padding: 0 0 45px 0;
}

.sidebar-section .sidebar-section-title {
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  color: #333333;
  padding: 0px 25px 15px 0px;
  margin: 10px 0 15px 0;
  font-size: 14px;
  line-height: 21px;
  font-weight: 600;
  border-bottom: 4px solid var(--primary-color);
  display: block;
  cursor: pointer;
  position: relative;
}

@media (min-width: 992px) {
  .sidebar-section .sidebar-section-title {
    font-size: 24px;
    line-height: 36px;
  }
}

.sidebar-section .sidebar-section-title::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 8px;
  right: 10px;
  border: 0;
  border-bottom: 1px solid #333333;
  border-right: 1px solid #333333;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
}

.sidebar-section .sidebar-section-title.collapsed::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.sidebar-section .sidebar-section-title.no-collapse::after {
  display: none;
}

.noui-slider {
  margin-top: 20px;
}

.noui-slider .noUi-horizontal .noUi-handle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #333333;
  cursor: pointer;
  outline: none;
}

.noui-slider .noUi-horizontal .noUi-handle::before, .noui-slider .noUi-horizontal .noUi-handle::after {
  display: none;
}

.noui-slider .noUi-horizontal .noUi-active {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.noui-slider .noUi-horizontal {
  height: 8px;
}

.noui-slider .noUi-target {
  background: #c8c8c8;
  border-radius: 0;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.noui-slider .noUi-connect {
  background: #333333;
}

.noui-slider .range-values {
  margin-top: 20px;
  text-align: center;
}

.noui-slider input {
  display: none;
}

.switch {
  position: relative;
  display: inline-block;
  width: 76px;
  height: 30px;
}

.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #333333;
  -webkit-transition: .4s;
  transition: .4s;
}

.switch .slider::before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  right: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

.switch .slider::after {
  position: absolute;
  content: "No";
  left: 15px;
  bottom: 4px;
  color: white;
}

.switch .slider.round {
  border-radius: 30px;
}

.switch .slider.round::before {
  border-radius: 50%;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch input:checked + .slider {
  background-color: var(--primary-color);
}

.switch input:focus + .slider {
  -webkit-box-shadow: 0 0 1px var(--primary-color);
          box-shadow: 0 0 1px var(--primary-color);
}

.switch input:checked + .slider:before {
  -webkit-transform: translateX(-46px);
  transform: translateX(-46px);
}

.switch input:checked + .slider:after {
  content: "Si";
  left: 52px;
}

.tag-check-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.tag-check-list input {
  opacity: 0.5;
  display: none;
}

.tag-check-list input + label {
  margin: 4px;
  color: #828282;
  font-size: 16px;
  line-height: 28px;
  padding: 0px 15px;
  background: white;
  border: 1px solid #808080;
  cursor: pointer;
  border-radius: 16px;
}

.tag-check-list input + label:hover {
  color: white;
  background: #808080;
  border: 1px solid #808080;
}

.tag-check-list input:checked + label {
  background-color: var(--btn-primary-bg-color);
  color:var(--btn-primary-txt-color);
  border: 1px solid var(--primary-color);
}

.tag-list li {
  display: inline-block;
  padding: 5px;
}

.tag-list li a {
  display: block;
  color: var(--light-color);
  font-size: 16px;
  line-height: 28px;
  padding: 0px 15px;
  background: white;
  border: 1px solid var(--dark-color);
  border-radius: 16px;
}

.tag-list li a:hover {
  color: white;
  background: var(--dark-color);
  border: 1px solid var(--dark-color);
}

.tag-list li a.active {
  color: white;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.filters-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #E0E0E0;
  margin-bottom: 20px;
  padding: 8px 0;
}

.filters-wrapper .pageview-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #4F4F4F;
  margin-left: 13px;
  font-size: 14px;
}

.filters-wrapper .pageview-wrapper .pageview {
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.filters-wrapper .pageview-wrapper .pageview span {
  width: 25px;
  height: 25px;
  display: inline-block;
  cursor: pointer;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 15px;
}

@media (min-width: 768px) {
  .filters-wrapper .pageview-wrapper .pageview span {
    width: 36px;
    height: 36px;
    background-size: 22px;
  }
}

.filters-wrapper .pageview-wrapper .pageview span.active {
  background-color: #c8c8c8;
}

.filters-wrapper .pageview-wrapper .pageview span:hover {
  background-color: #c8c8c8;
}

.filters-wrapper .pageview-wrapper .pageview span.grid-view {
  background-image: url(../img/grid-view-icon.png);
}

.filters-wrapper .pageview-wrapper .pageview span.list-view {
  background-image: url(../img/list-view-icon.png);
}

.filters-wrapper .pageview-wrapper .number-results {
  display: none;
  margin-left: 10px;
}

@media (min-width: 1200px){
  .filters-wrapper .pageview-wrapper .number-results {
    display: block;
  }
}

.filters-wrapper .sort-wrapper {
  -ms-flex-item-align: end;
  align-self: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.filters-wrapper .sort-wrapper .number-display {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 10px;
}

.filters-wrapper .sort-wrapper .sort-results {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 10px;
}

.filters-wrapper .sort-wrapper label {
  color: #4F4F4F;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  margin-right: 10px;
  font-size: 14px;
}

.filters-wrapper .custom-select {
  margin: 0px;
}

.custom-select {
  border-radius: 0;
  font-size: 12px;
  outline: none;
  position: relative;
  padding-right: 25px;
  background-image: url(../img/bg-select.png);
  background-repeat: no-repeat;
  background-position: right 10px top 14px;
  color: #333;
}

@media (min-width: 992px) {
  .custom-select {
    font-size: 16px;
  }
}

.custom-select::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 1;
  border-bottom: 1px solid #333333;
  border-right: 1px solid #333333;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.alert-message {
  display: block;
  text-align: center;
  padding: 20px;
  margin-bottom: 30px;
  background: #E0E0E0;
  font-size: 14px;
  line-height: 22px;
}

@media (min-width: 992px) {
  .alert-message {
    font-size: 20px;
    line-height: 30px;
  }
}

.items-grid-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-box-pack: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 60px;
}

.items-grid-layout .product {
  width: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 20px 20px 20px;
  background: white;
  position: relative;
  min-width: 300px;
}

.items-grid-layout .product .product-discount {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 15px;
  right: 15px;
  text-align: center;
  line-height: 50px;
  color: white;
  background: var(--primary-color);
  border-radius: 50%;
  z-index: 10;
}

.items-grid-layout .product .product-image {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
      align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
      justify-content: center;
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  margin: 10px auto 0;
  max-width: 100%;
  height: 120px;
}

.items-grid-layout .product .product-image a {
  display: block;
}

.items-grid-layout .product .product-image img {
  max-height: 100px;
  width: auto !important;
}

.items-grid-layout .product .product-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
      flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  position: relative;
  margin: 0 0 0;
  width: 100%;
  -ms-flex-item-align: end;
      align-self: flex-end;
  padding-top: 15px;
  height: auto !important;
}

.items-grid-layout .product .product-info .product-name h3 {
  text-align: center;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  color: #333333;
  font-size: 14px;
  line-height: 22px;
  height: 22px;
  overflow: hidden;
  font-weight: 500;
}

@media (min-width: 992px) {
  .items-grid-layout .product .product-info .product-name h3 {
    font-size: 20px;
    line-height: 22px;
  }
}

.items-grid-layout .product .product-info .product-name:hover h3 {
  color: var(--primary-color);
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
}

.items-grid-layout .product .product-info .product-name .description {
  display: none;
}

.items-grid-layout .product .product-info .product-prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
      justify-content: center;
  font-size: 12px;
  line-height: 18px;
}

@media (min-width: 992px) {
  .items-grid-layout .product .product-info .product-prices {
    font-size: 18px;
    line-height: 27px;
  }
}

.items-grid-layout .product .product-info .product-prices .end-price {
  color: var(--dark-color);
  font-weight: 700;
  padding: 0 15px;
  font-size: 24px;
}

.items-grid-layout .product .product-info .product-prices .prev-price {
  color: #4f4f4f;
  font-weight: 400;
  padding: 0 10px;
  position: relative;
  font-size: 20px;
}

.items-grid-layout .product .product-info .product-prices .prev-price::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: 0px;
  margin-left: -35px;
  width: 70px;
  height: 1px;
  border-bottom: 1px solid #808080;
  -webkit-transform: rotate(-15deg);
  transform: rotate(-15deg);
}

.items-grid-layout .product .product-info .product-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
      justify-content: center;
  font-size: 12px;
  line-height: 18px;
  margin-top: 5px;
}

@media (min-width: 992px) {
  .items-grid-layout .product .product-info .product-links {
    font-size: 14px;
    line-height: 27px;
  }
}

.items-grid-layout .product .product-info .product-links .heart-icon {
  text-decoration: none;
  margin-left: 10px;
}

.items-grid-layout .product .product-info .product-links .btn-add-favourite {
  content: url(../img/heart-icon.png);
  cursor: pointer;
  margin-left: 5px;
}

.items-grid-layout .product .product-info .product-links .btn-add-favourite.selected {
  content: url(../img/heart-icon-selected.png);
}

.items-grid-layout .product:hover {
  -webkit-box-shadow: 0.2px 0.2px 20px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0.2px 0.2px 20px 0px rgba(0, 0, 0, 0.15);
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
  z-index: 2;
}

.items-grid-layout .product.hidden {
  margin: 0;
  border: 0;
  height: 1px;
  visibility: hidden;
}

.product.hidden-space {
  height: 0;
  visibility: hidden;
}


.items-list-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
      align-items: flex-start;
  -webkit-box-pack: center;
  padding-bottom: 40px;
}

.items-list-layout .product {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin: 15px 0;
  background: white;
  position: relative;
  height: 250px;
}

.items-list-layout .product .product-discount {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 15px;
  right: 15px;
  text-align: center;
  line-height: 50px;
  color: white;
  background: var(--primary-color);
  border-radius: 50%;
  z-index: 10;
}

.items-list-layout .product .product-image {
  cursor: pointer;
  width: 30%;
  height: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.items-list-layout .product .product-image img {
  max-height: 100px;
  width: auto !important;
}

.items-list-layout .product .product-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
      align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0;
  width: 100%;
  height: auto;
}

.items-list-layout .product .product-info .product-name {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}

.items-list-layout .product .product-info .product-name h3 {
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  color: #333333;
  font-size: 16px;
  line-height: 22px;
  height: 22px;
  overflow: hidden;
  font-weight: 500;
  margin-bottom: 15px;
}

@media (min-width: 992px) {
  .items-list-layout .product .product-info .product-name h3 {
    font-size: 20px;
    line-height: 22px;
  }
}

.items-list-layout .product .product-info .product-name:hover h3 {
  color: var(--primary-color);
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
}


.items-list-layout .product .product-info .product-name .description {
  display: none;
}

@media (min-width: 992px) {
  .items-list-layout .product .product-info .product-name .description {
    font-size: 20px;
    line-height: 30px;
  }
}

.items-list-layout .product .product-info .product-prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
  line-height: 18px;
}

@media (min-width: 992px) {
  .items-list-layout .product .product-info .product-prices {
    font-size: 18px;
    line-height: 27px;
  }
}

.items-list-layout .product .product-info .product-prices .end-price {
  color: var(--dark-color);
  font-weight: 700;
  padding: 0 15px;
  font-size: 24px;
}

.items-list-layout .product .product-info .product-prices .prev-price {
  color: #4f4f4f;
  font-weight: 400;
  padding: 0 10px;
  position: relative;
}

.items-list-layout .product .product-info .product-prices .prev-price::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: 0px;
  margin-left: -35px;
  width: 70px;
  height: 1px;
  border-bottom: 1px solid #808080;
  -webkit-transform: rotate(-15deg);
  transform: rotate(-15deg);
}

.items-list-layout .product .product-info .product-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
      justify-content: center;
  font-size: 12px;
  line-height: 18px;
  margin-top: 5px;
}

@media (min-width: 992px) {
  .items-list-layout .product .product-info .product-links {
    font-size: 14px;
    line-height: 27px;
  }
}

.items-list-layout .product .product-info .product-links .heart-icon {
  text-decoration: none;
  margin-left: 10px;
}

.items-list-layout .product .product-info .product-links .btn-add-favourite {
  content: url(../img/heart-icon.png);
  cursor: pointer;
  margin-left: 5px;
}

.items-list-layout .product .product-info .product-links .btn-add-favourite.selected {
  content: url(../img/heart-icon-selected.png);
}

.items-list-layout .product:hover {
  -webkit-box-shadow: 0.2px 0.2px 20px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0.2px 0.2px 20px 0px rgba(0, 0, 0, 0.15);
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
}

.items-list-layout .product.hidden {
  margin: 0;
  border: 0;
  height: 1px;
  visibility: hidden;
}

.pagination li {
  display: inline-block;
}

.pagination li a {
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
  text-align: center;
  text-decoration: none;
}

.pagination li a.page {
  color: #333333;
  line-height: 30px;
  margin-left: -1px;
  background: white;
  border: 1px solid #333333;
}

.pagination li a.page:hover {
  color: var(--btn-primary-hover-txt-color);
  background: var(--btn-primary-hover-bg-color);
  border: 1px solid var(--btn-primary-hover-bg-color);
}

.pagination li a.page.active, .pagination li a.page.active:hover {
  color: white;
  background: #333333;
  border: 1px solid #333333;
}

.pagination li a.prev {
  width: 30px;
}

.pagination li a.prev::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 3px;
  width: 10px;
  height: 10px;
  border-bottom: 1px solid #333333;
  border-right: 1px solid #333333;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.pagination li a.prev.disabled {
  cursor: default;
  opacity: 0.5;
}

.pagination li a.next {
  width: 30px;
}

.pagination li a.next::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 3px;
  width: 10px;
  height: 10px;
  border-bottom: 1px solid #333333;
  border-right: 1px solid #333333;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.pagination li a.next.disabled {
  cursor: default;
  opacity: 0.5;
}

.pagination-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.secondary-section {
  background: url(../img/bg-evidence.png) 0 0 repeat;
  padding: 130px 0 180px 0;
}

.secondary-section .recommended-list .product a.product-name h3 {
  font-size: 16px;
  line-height: 1;
  height: 16px;
  overflow: hidden;
}

.secondary-section .recommended-list .product .product-prices {
  font-size: 1rem;
  padding-right: 0;
}

.secondary-section .recommended-list .product .product-info .product-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.secondary-section .recommended-list .product .product-info .product-links input.button {
  border-radius: 4px;
  width: 120px;
  background-image: url(../img/white-cart-icon.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.secondary-section .recommended-list .product .product-info .product-links input.button:hover {
  background: var(--primary-color);
  border: none;
  -webkit-box-shadow: 1px 1px 8px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 1px 1px 8px 0px rgba(0, 0, 0, 0.5);
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
}

.secondary-section .related-list .product a.product-name h3 {
  font-size: 16px;
  line-height: 1;
  height: 16px;
  overflow: hidden;
}

.secondary-section .related-list .product .product-prices {
  font-size: 1rem;
  padding-right: 0;
}

.secondary-section .related-list .product .product-info .product-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
  -webkit-box-pack: center;
}

.secondary-section .related-list .product .product-info .product-links input.button {
  border-radius: 4px;
  width: 120px;
  background-image: url(../img/white-cart-icon.png);
  background-position: center center;
  background-repeat: no-repeat;
}

.secondary-section .related-list .product .product-info .product-links input.button:hover {
  background: var(--primary-color);
  border: none;
  -webkit-box-shadow: 1px 1px 8px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 1px 1px 8px 0px rgba(0, 0, 0, 0.5);
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
}

.number-input {
  border: 1px solid #ddd;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.number-input * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.number-input button {
  outline: none;
  -webkit-appearance: none;
  background-color: white;
  border: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 28px;
  height: 38px;
  cursor: pointer;
  margin: 0;
  position: relative;
}

.number-input button::before, .number-input button::after {
  display: inline-block;
  position: absolute;
  content: '';
  width: 10px;
  height: 2px;
  background-color: #333333;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.number-input button.plus::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.number-input input[type=number] {
  max-width: 60px;
  padding: .5rem;
  border: solid #ddd;
  border-width: 0 2px;
  font-size: 1rem;
  height: 38px;
  text-align: center !important;
}

.product-section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  width: 100%;
  max-width: 550px;
}

.product-section .box .primary {
  background: white;
  border: 1px solid #BDBDBD;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 500px;
}

.product-section .box ul.thumbs-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin: 30px 0 30px 0;
}

.product-section .box ul.thumbs-list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 94px;
  height: 94px;
  border: 1px solid #BDBDBD;
  position: relative;
}

.product-section .box ul.thumbs-list li a:hover::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--btn-primary-hover-bg-color);
  color:var(--btn-primary-hover-txt-color);
}

.product-section .box ul.thumbs-list li a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--btn-primary-hover-bg-color);
  color:var(--btn-primary-hover-txt-color);
}

.product-section .add-basket-box {
  display: none;
}

.product-section .add-basket-box .message-add-basket {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  line-height: 16px;
  background: white;
  border: 2px solid #45ba3c;
  color: #45ba3c;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px;
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .product-section .add-basket-box .message-add-basket {
    font-size: 21px;
    line-height: 24px;
  }
}

.product-section .add-basket-box .message-add-basket .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product-section .add-basket-box .message-add-basket .btn {
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  border-radius: 4px;
  background-color: var(--btn-primary-bg-color);
  color:var(--btn-primary-txt-color);
  padding: 10px 20px;
  outline: none;
  border: 0;
  background: #45ba3c;
}

.product-section .product-info .product-title-wrapper {
  position: relative;
  padding: 0 40px 0 0;
}

.product-section .product-info .product-title-wrapper .btn-add-favourite {
  content: url(../img/heart-icon.png);
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}

.product-section .product-info .product-title-wrapper .btn-add-favourite.selected {
  content: url(../img/heart-icon-selected.png);
}

.product-section .product-info .product-title-wrapper h1 {
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  color: #333333;
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}

@media (min-width: 992px) {
  .product-section .product-info .product-title-wrapper h1 {
    font-size: 28px;
    line-height: 28px;
  }
}

.product-section .product-info .product-description {
  font-size: 14px;
  line-height: 22px;
  color: #828282;
  line-height: 1.5;
}

@media (min-width: 992px) {
  .product-section .product-info .product-description {
    font-size: 20px;
    line-height: 30px;
  }
}

.product-section .product-info .product-variants-wrapper {
  background: #F2F2F2;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  margin-top: 45px;
}

.product-section .product-info .product-variants-wrapper .product-format {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product-section .product-info .product-variants-wrapper .product-format label.title {
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  color: #333333;
  font-size: 13px;
  line-height: 19px;
  margin: 0 0 15px 0;
}

@media (min-width: 992px) {
  .product-section .product-info .product-variants-wrapper .product-format label.title {
    font-size: 22px;
    line-height: 33px;
  }
}

.product-section .product-info .product-variants-wrapper .product-format .format-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product-section .product-info .product-variants-wrapper .product-format .format-list li {
  font-size: 13px;
  line-height: 19px;
  position: relative;
  text-align: center;
  padding: 0 30px;
}

@media (min-width: 992px) {
  .product-section .product-info .product-variants-wrapper .product-format .format-list li {
    font-size: 22px;
    line-height: 33px;
  }
}

.product-section .product-info .product-variants-wrapper .product-format .format-list li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1px;
  margin-top: -20px;
  width: 1px;
  height: 40px;
  border-right: 2px solid #828282;
}

.product-section .product-info .product-variants-wrapper .product-format .format-list li:nth-last-child(1)::after {
  display: none;
}

.product-section .product-info .product-variants-wrapper .product-format .format-list li input {
  display: none;
}

.product-section .product-info .product-variants-wrapper .product-format .format-list li input + label {
  padding: 0;
  color: #828282;
  font-size: 13px;
  line-height: 19px;
  border-radius: 30px;
  cursor: pointer;
}

@media (min-width: 992px) {
  .product-section .product-info .product-variants-wrapper .product-format .format-list li input + label {
    font-size: 22px;
    line-height: 60px;
  }
}

.product-section .product-info .product-variants-wrapper .product-format .format-list li input:checked + label {
  background: #333333;
  color: white;
  padding: 0 30px;
}

.product-section .product-info .product-variants-wrapper .product-format .format-list li a.title {
  color: #828282;
  display: table-cell;
  word-wrap: break-word;
  vertical-align: middle;
  border-radius: 50%;
  cursor: pointer;
}

.product-section .product-info .product-variants-wrapper .product-format .format-list li a.title.checked {
  background: #333333;
  color: white;
}

.product-section .product-info .product-variants-wrapper .product-add {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 10px 0 0 0;
}

.product-section .product-info .product-variants-wrapper .product-add .number-input button {
  width: 26px;
  height: 36px;
}

.product-section .product-info .product-variants-wrapper .product-add .number-input input[type=number] {
  max-width: 40px;
  height: 36px;
}

.product-section .product-info .product-variants-wrapper .product-add .product-price {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}

@media (min-width: 992px) {
  .product-section .product-info .product-variants-wrapper .product-add .product-price {
    font-size: 28px;
    line-height: 41px;
  }
}

.product-section .product-info .product-variants-wrapper .product-add .product-price.prev-price {
  color: #4f4f4f;
  font-weight: 400;
  padding: 0 10px;
  position: relative;
  font-size: 14px;
  line-height: 21px;
}

@media (min-width: 992px) {
  .product-section .product-info .product-variants-wrapper .product-add .product-price.prev-price {
    font-size: 24px;
    line-height: 36px;
  }
}

.product-section .product-info .product-variants-wrapper .product-add .product-price.prev-price::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: 0px;
  margin-left: -35px;
  width: 70px;
  height: 1px;
  border-bottom: 1px solid #808080;
  -webkit-transform: rotate(-15deg);
  transform: rotate(-15deg);
}

.product-section .product-info .product-variants-wrapper .product-add .button {
  position: relative;
  color: white;
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  font-size: 14px;
  line-height: 21px;
  padding: 10px 20px;
  cursor: pointer;
  width: 100%;
  text-align: center;
  margin-top: 10px;
}

@media (min-width: 992px) {
  .product-section .product-info .product-variants-wrapper .product-add .button {
    font-size: 24px;
    line-height: 48px;
  }
}

.product-section .product-info .product-variants-wrapper .product-add .button::after {
  position: relative;
  top: -3px;
  left: 0;
  content: '\ea1d';
  font-family: 'icons8_win10';
  font-size: 30px;
  font-weight: 400;
  vertical-align: middle;
}

.product-section .product-info .product-variants-wrapper .product-add .product-buttons .btn-add-favourite {
  width: 25px;
  height: 25px;
  margin: 20px 10px 0 0;
  content: url(../img/heart-icon.png);
  cursor: pointer;
}

.product-section .product-info .product-variants-wrapper .product-add .product-buttons .btn-add-favourite.selected {
  content: url(../img/heart-icon-selected.png);
}

.product-section .product-info .product-variants-wrapper .product-add .product-availability span.available::after {
  content: url(../img/available.png);
}

.product-section .product-info .product-specs-wrapper {
  margin-top: 40px;
}

.product-section .product-info .product-specs-wrapper h3 {
  display: block;
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  color: #333333;
  font-size: 13px;
  line-height: 19px;
  margin-bottom: 40px;
}

@media (min-width: 992px) {
  .product-section .product-info .product-specs-wrapper h3 {
    font-size: 22px;
    line-height: 33px;
  }
}

.product-section .product-info .product-specs-wrapper .product-specs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.product-section .product-info .product-specs-wrapper .product-specs .data-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
          flex: 0 0 50%;
  max-width: 50%;
  padding: 0 0 30px 0;
}

.product-section .product-info .product-specs-wrapper .product-specs .data-group .title {
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  -ms-flex: 0 0 40%;
  -webkit-box-flex: 0;
          flex: 0 0 40%;
  max-width: 40%;
  padding-right: 5px;
}

.product-section .product-info .product-specs-wrapper .product-specs .data-group .description {
  color: #828282;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  -ms-flex: 0 0 60%;
  -webkit-box-flex: 0;
          flex: 0 0 60%;
  max-width: 60%;
}

.product-section .product-gallery {
  padding: 0 0 30px 0;
}
/*
.product-section .product-gallery-main.owl-carousel .owl-stage-outer {
  border: 1px solid #ccc;
}

.product-section .product-gallery-main.owl-carousel .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product-section .product-gallery-main.owl-carousel .owl-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  height: 166px;
}

.product-section .product-gallery-main.owl-carousel .owl-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.product-section .product-gallery-main.owl-carousel .owl-item img {
  width: auto;
  margin: 0 auto;
  max-height: 150px;
}

.product-section .product-gallery-thumbs {
  margin-top: 20px;
}

.product-section .product-gallery-thumbs.owl-carousel .owl-item.current .img-wrapper {
  border-bottom: 5px solid #FF5722;
}

.product-section .product-gallery-thumbs.owl-carousel .owl-item .img-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  border: 1px solid #ccc;
  width: auto;
  height: 80px;
  margin: 0 auto;
}

.product-section .product-gallery-thumbs.owl-carousel .owl-item .img-wrapper img {
  max-height: 100%;
  width: auto;
}
*/
.product-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px 15px;
}

.product-detail ul.nav.nav-tabs li a {
  display: block !important;
}

.product-detail .nav-tabs {
  border: 0;
  background: #333333;
  color: white;
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
}

.product-detail .nav-tabs .nav-item {
  margin: 0;
}

.product-detail .nav-tabs .nav-item .nav-link {
  color: white;
  font-size: 1rem;
  border: 0;
  padding: 15px 45px;
  border-radius: 0;
}

.product-detail .nav-tabs .nav-item .nav-link.active {
  background-color: var(--btn-primary-hover-bg-color);
  color:var(--btn-primary-hover-txt-color);
}

.product-detail .tab-content .tab-pane {
  font-size: 14px;
  line-height: 22px;
  color: #828282;
  padding: 45px 0;
}

@media (min-width: 992px) {
  .product-detail .tab-content .tab-pane {
    font-size: 20px;
    line-height: 30px;
  }
}

.registration-section .form-wrapper {
  background: #E0E0E0;
  padding: 30px 30px;
  margin-bottom: 30px;
}

.registration-section .form-wrapper h4 {
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  display: block;
  text-align: center;
  margin: 20px 0 0 0;
}

.registration-section .form-wrapper .form-group {
  font-size: 13px;
  line-height: 19px;
}

@media (min-width: 992px) {
  .registration-section .form-wrapper .form-group {
    font-size: 22px;
    line-height: 33px;
  }
}

.registration-section .form-wrapper .form-group .control-label {
  display: block;
  text-align: left;
  font-size: 13px;
  line-height: 19px;
  padding-top: 10px;
}

@media (min-width: 992px) {
  .registration-section .form-wrapper .form-group .control-label {
    font-size: 22px;
    line-height: 33px;
  }
}

.registration-section .form-wrapper .form-group .required::after {
  content: "*";
  margin-left: 5px;
}

.registration-section .form-wrapper .form-group .required-group::after {
  content: "**";
  margin-left: 5px;
}

.registration-section .form-wrapper .form-group a {
  color: #4F4F4F;
}

.registration-section .form-wrapper .form-group a:hover {
  color: var(--primary-color);
}

.registration-section .form-wrapper .btn.btn-primary {
  color: white;
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  font-size: 14px;
  line-height: 21px;
  width: 200px;
  height: 60px;
}

@media (min-width: 992px) {
  .registration-section .form-wrapper .btn.btn-primary {
    font-size: 24px;
    line-height: 36px;
  }
}

.registration-section .form-wrapper .custom-checkbox .custom-control-label {
  padding-left: 25px;
}

.registration-section .form-wrapper .custom-checkbox .custom-control-label::before, .registration-section .form-wrapper .custom-checkbox .custom-control-label::after {
  top: 0;
  width: 30px;
  height: 30px;
}

.contact-section .form-wrapper {
  background: #E0E0E0;
  padding: 30px;
  margin-bottom: 80px;
}

.contact-section .form-wrapper h4 {
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  font-size: 16px;
  line-height: 24px;
  display: block;
  padding: 20px 15px 30px 15px;
  text-align: center;
  font-weight: 400;
}

@media (min-width: 992px) {
  .contact-section .form-wrapper h4 {
    font-size: 28px;
    line-height: 41px;
  }
}

.contact-section .form-wrapper .form-group {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-size: 13px;
  line-height: 19px;
}

@media (min-width: 992px) {
  .contact-section .form-wrapper .form-group {
    font-size: 22px;
    line-height: 33px;
  }
}

.contact-section .form-wrapper .form-group .form-control {
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 20px;
}

@media (min-width: 992px) {
  .contact-section .form-wrapper .form-group .form-control {
    font-size: 24px;
    line-height: 36px;
  }
}

.contact-section .form-wrapper .form-group .required::after {
  content: "*";
  margin-left: 5px;
}

.contact-section .form-wrapper .form-group .required-group::after {
  content: "**";
  margin-left: 5px;
}

.contact-section .form-wrapper .form-group a {
  color: #4F4F4F;
  text-decoration: underline;
}

.contact-section .form-wrapper .form-group a:hover {
  color: var(--primary-color);
}

.contact-section .form-wrapper .btn.btn-primary {
  line-height: 21px;
  padding: 0 40px;
  height: 60px;
}

@media (min-width: 992px) {
  .contact-section .form-wrapper .btn.btn-primary {
    font-size: 24px;
    line-height: 36px;
  }
}

.contact-section .form-wrapper .custom-checkbox .custom-control-label {
  padding-left: 25px;
}

.contact-section .form-wrapper .custom-checkbox .custom-control-label::before, .contact-section .form-wrapper .custom-checkbox .custom-control-label::after {
  top: 0;
  width: 30px;
  height: 30px;
}

.contact-section .contact-boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: 40px;
}

.contact-section .contact-boxes .contact-box {
  width: 31%;
  background: #333333;
  color: white;
  padding: 40px;
  margin-bottom: 30px;
  min-height: 300px;
  text-align: center;
}

.contact-section .contact-boxes .contact-box .contact-box-image {
  height: 120px;
}

.contact-section .contact-boxes .contact-box .contact-box-image img {
  max-height: 92px;
  width: auto;
}

.contact-section .contact-boxes .contact-box .contact-box-text {
  font-size: 18px;
  line-height: 22px;
}

@media (min-width: 992px) {
  .contact-section .contact-boxes .contact-box .contact-box-text {
    font-size: 32px;
    line-height: 48px;
  }
}

.contact-section .contact-boxes .contact-box a {
  color: white;
  text-decoration: underline;
}

.contact-section .form-wrapper .form-group .securityCode .form-control{
    margin-bottom: 0px;
}

.imageCaptcha img {
    height: 66px;
}

.account-section .form-wrapper {
  background: #E0E0E0;
  padding: 30px 30px;
  margin-bottom: 30px;
}

.account-section .form-wrapper h4 {
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  display: block;
  text-align: center;
  margin: 20px 0 0 0;
}

.account-section .form-wrapper .form-group {
  font-size: 13px;
  line-height: 19px;
}

@media (min-width: 992px) {
  .account-section .form-wrapper .form-group {
    font-size: 22px;
    line-height: 33px;
  }
}

.account-section .form-wrapper .form-group .control-label {
  display: block;
  text-align: left;
  font-size: 13px;
  line-height: 19px;
  padding-top: 10px;
}

@media (min-width: 992px) {
  .account-section .form-wrapper .form-group .control-label {
    font-size: 22px;
    line-height: 33px;
  }
}

.account-section .form-wrapper .form-group .required::after {
  content: "*";
  margin-left: 5px;
}

.account-section .form-wrapper .form-group .required-group::after {
  content: "**";
  margin-left: 5px;
}

.account-section .form-wrapper .form-group a {
  color: #4F4F4F;
}

.account-section .form-wrapper .form-group a:hover {
  color: var(--primary-color);
}

.account-section .form-wrapper .btn.btn-primary {
  color: white;
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  font-size: 14px;
  line-height: 21px;
  width: 200px;
  height: 60px;
}

@media (min-width: 992px) {
  .account-section .form-wrapper .btn.btn-primary {
    font-size: 24px;
    line-height: 36px;
  }
}

.account-section .form-wrapper .custom-checkbox .custom-control-label {
  padding-left: 25px;
}

.account-section .form-wrapper .custom-checkbox .custom-control-label::before, .account-section .form-wrapper .custom-checkbox .custom-control-label::after {
  top: 0;
  width: 30px;
  height: 30px;
}

hr.divider {
  border-top: 1px solid #808080;
  margin: 20px 0;
}

.login-portlet {
  height: auto !important;
}

.login-section .form-wrapper {
  background: #E0E0E0;
  padding: 30px 30px;
  margin-bottom: 20px;
}

.login-section .form-wrapper h4 {
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  font-size: 16px;
  line-height: 24px;
  display: block;
  padding: 0px 0px 30px 0px;
  text-align: center;
}

@media (min-width: 992px) {
  .login-section .form-wrapper h4 {
    font-size: 24px;
    line-height: 36px;
  }
}

.login-section .form-wrapper .text-wrapper {
  padding: 0 0 20px 0;
}

.login-section .form-wrapper .text-wrapper span {
  color: #4F4F4F;
  font-size: 14px;
  line-height: 21px;
}

@media (min-width: 992px) {
  .login-section .form-wrapper .text-wrapper span {
    font-size: 24px;
    line-height: 36px;
  }
}

.login-section .form-wrapper .form-group {
  margin-bottom: 1rem;
  position: relative;
  display: block;
}

.login-section .form-wrapper .form-group.button-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.login-section .form-wrapper .form-group .form-control {
  width: 100%;
  display: block;
  padding: 12px 15px;
}

.login-section .form-wrapper .form-group .form-control + .control-label {
  display: block;
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 13px;
  line-height: 19px;
}

@media (min-width: 992px) {
  .login-section .form-wrapper .form-group .form-control + .control-label {
    font-size: 22px;
    line-height: 33px;
  }
}

.login-section .form-wrapper .form-group .form-control:focus + .control-label {
  display: none;
}

.login-section .form-wrapper .form-group .button {
  width: 100%;
  padding: 15px 50px;
  text-align: center;
  text-transform: uppercase;
  border-radius: 4px;
  font-size: 14px;
  line-height: 21px;
}

@media (min-width: 992px) {
  .login-section .form-wrapper .form-group .button {
    font-size: 24px;
    line-height: 36px;
  }
}

.login-section .form-wrapper .form-group .button:hover {
  background: var(--primary-color);
  border: none;
  -webkit-box-shadow: 1px 1px 8px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 1px 1px 8px 0px rgba(0, 0, 0, 0.5);
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
}

.login-section .form-wrapper .form-group .button.btn-registration {
  background: #333333;
}

.login-section .form-wrapper .button-wrapper.logged {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

/*
.login-section .form-wrapper .button-wrapper .btn {
  color: white;
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  font-size: 14px;
  line-height: 21px;
  width: 100%;
  margin-bottom: 10px;
}
*/

@media (min-width: 992px) {
  .login-section .form-wrapper .button-wrapper .btn {
    font-size: 24px;
    line-height: 36px;
  }
}

/*
.login-section .form-wrapper .button-wrapper .btn.btn-primary {
  padding: 10px 20px;
}

.login-section .form-wrapper .button-wrapper .btn.btn-secondary {
  padding: 10px 20px;
  background: #333333;
}
*/
.login-section .form-wrapper a.link {
  display: block;
  text-align: right;
  text-decoration: underline;
  color: #333333;
}

.login-section .form-wrapper a.link:hover {
  color: var(--primary-color);
}

.content > .box {
  margin: 0 !important;
}

.sidebar-account {
  margin-right: 60px;
}

.sidebar-account .customer-info {
  padding: 0 0 20px 0;
}

.sidebar-account .nav-account-wrap {
  margin-bottom: 80px;
}

.sidebar-account .nav-account-wrap .nav-account-title {
  display: block;
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  font-size: 14px;
  line-height: 21px;
  padding: 0px 25px 10px 0px;
  margin: 0 0 15px 0;
  font-weight: 600;
  border-bottom: 4px solid var(--primary-color);
  display: block;
  cursor: pointer;
  position: relative;
}

@media (min-width: 992px) {
  .sidebar-account .nav-account-wrap .nav-account-title {
    font-size: 24px;
    line-height: 36px;
  }
}

.sidebar-account .nav-account-wrap .nav-account-title::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 15px;
  right: 10px;
  border: 0;
  border-bottom: 1px solid #333333;
  border-right: 1px solid #333333;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
}

.sidebar-account .nav-account-wrap .nav-account-title.collapsed::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.sidebar-account .nav-account-wrap .nav-account-title.no-collapse::after {
  display: none;
}

.sidebar-account .nav-account-wrap .nav-account {
  padding-left: 30px;
}

.sidebar-account .nav-account-wrap .nav-account li {
  border-bottom: 1px solid #808080;
}

.sidebar-account .nav-account-wrap .nav-account li a {
  display: block;
  font-size: 13px;
  line-height: 19px;
  padding: 15px 0;
  color: #4F4F4F;
  position: relative;
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
}

@media (min-width: 992px) {
  .sidebar-account .nav-account-wrap .nav-account li a {
    font-size: 22px;
    line-height: 33px;
  }
}

.sidebar-account .nav-account-wrap .nav-account li a:hover {
  color: var(--primary-color);
}

.sidebar-account .nav-account-wrap .nav-account li a.active {
  padding-left: 30px;
  color: var(--primary-color);
  font-weight: 600;
}

.sidebar-account .nav-account-wrap .nav-account li a.active::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 50%;
  left: 0px;
  margin: -5px 0 0 -2px;
  border: 0;
  border-bottom: 1px solid var(--primary-color);
  border-right: 1px solid var(--primary-color);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
}

.account-section .form-wrapper label {
  text-align: left;
}

.account-section .form-wrapper .row.doubleinput {
  margin: 0;
}

.content-account {
  margin: 0;
}

.content-account .table-account-wrap {
  margin-bottom: 50px;
}

.content-account .table-account-wrap .account-title {
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  font-size: 14px;
  line-height: 21px;
  font-weight: 600;
  margin-bottom: 10px;
}

@media (min-width: 992px) {
  .content-account .table-account-wrap .account-title {
    font-size: 24px;
    line-height: 36px;
  }
}

.content-account .table-account-wrap .table-account {
  font-size: 13px;
  line-height: 19px;
  color: #4F4F4F;
}

@media (min-width: 992px) {
  .content-account .table-account-wrap .table-account {
    font-size: 22px;
    line-height: 33px;
  }
}

.content-account .table-account-wrap .table-account a {
  color: #4F4F4F;
  text-decoration: underline;
}

.content-account .table-account-wrap .table-account a:hover {
  color: var(--primary-color);
}

.content-account .table-account-wrap .table-account td, .content-account .table-account-wrap .table-account th {
  border: 0;
}

.content-account .table-account-wrap .table-account .table-header tr {
  background: #E0E0E0;
}

.content-account .table-account-wrap .table-account .table-header tr th {
  vertical-align: middle;
  font-weight: 400;
  position: relative;
}

.content-account .table-account-wrap .table-account .table-header tr th .icon-sorting {
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  margin-left: 10px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  cursor: pointer;
}

.content-account .table-account-wrap .table-account .table-header tr th .icon-sorting.desc {
  border-top: 8px solid #c8c8c8;
}

.content-account .table-account-wrap .table-account .table-header tr th .icon-sorting.desc:hover {
  border-top: 8px solid #828282;
}

.content-account .table-account-wrap .table-account .table-header tr th .icon-sorting.asc {
  border-bottom: 8px solid #c8c8c8;
}

.content-account .table-account-wrap .table-account .table-header tr th .icon-sorting.asc:hover {
  border-bottom: 8px solid #828282;
}

.content-account .table-account-wrap .table-account tbody tr {
  position: relative;
  border-bottom: 1px solid #E0E0E0;
}

.content-account .table-account-wrap .table-account tbody td {
  padding: 15px;
  vertical-align: middle;
}

.content-account .table-account-wrap .table-account tbody td:last-of-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.content-account .table-account-wrap .table-account tbody tr:nth-of-type(even) {
  background: #F2F2F2;
}

.content-account .table-account-wrap .table-account tbody .btn {
  background-color: var(--btn-primary-bg-color);
  color:var(--btn-primary-txt-color);
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  font-size: 13px;
  line-height: 19px;
  width: 130px;
  height: 100px;
  border-radius: 0;
}

@media (min-width: 992px) {
  .content-account .table-account-wrap .table-account tbody .btn {
    font-size: 22px;
    line-height: 33px;
  }
}

.content-account .table-account-wrap .table-account tbody .btn:hover {
  background: var(--primary-color);
}

.content-account .table-account-wrap .table-account .icon-copy, .content-account .table-account-wrap .table-account .icon-print, .content-account .table-account-wrap .table-account .icon-validate, .content-account .table-account-wrap .table-account .icon-modify, .content-account .table-account-wrap .table-account .icon-trash {
  cursor: pointer;
}

.content-account .table-account-wrap .table-account .icon-copy::after, .content-account .table-account-wrap .table-account .icon-print::after, .content-account .table-account-wrap .table-account .icon-validate::after, .content-account .table-account-wrap .table-account .icon-modify::after, .content-account .table-account-wrap .table-account .icon-trash::after {
  zoom: 70%;
}

.content-account .table-account-wrap .table-account .icon-copy {
  margin-right: 10px;
  margin-right: 10px;
}

.content-account .table-account-wrap .table-account .icon-copy::after {
  content: url(../img/copy-icon.png);
  zoom: 70%;
}

.content-account .table-account-wrap .table-account .icon-print {
  margin-right: 10px;
}

.content-account .table-account-wrap .table-account .icon-print::after {
  content: url(../img/print-icon.png);
}

.content-account .table-account-wrap .table-account .icon-validate {
  margin-right: 10px;
}

.content-account .table-account-wrap .table-account .icon-validate::after {
  content: url(../img/validate-icon.png);
}

.content-account .table-account-wrap .table-account .icon-modify {
  margin-right: 10px;
}

.content-account .table-account-wrap .table-account .icon-modify::after {
  content: url(../img/modify-icon.png);
}

.content-account .table-account-wrap .table-account .icon-trash::after {
  content: url(../img/trash-icon.png);
}

.content-account .table-account-wrap .table-account .pagination a {
  text-decoration: none;
}

.message-box-wrap {
  display: none;
}

.message-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  line-height: 16px;
  background: white;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px;
  margin-bottom: 30px;
  border-width: 2px;
  border-style: solid;
}

@media (min-width: 992px) {
  .message-box {
    font-size: 21px;
    line-height: 24px;
  }
}

.message-box .btn {
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  border-radius: 4px;
  background-color: var(--btn-primary-bg-color);
  color:var(--btn-primary-txt-color);
  padding: 10px 20px;
  outline: none;
  border: 0;
}

.message-box.success {
  border-color: #45ba3c;
}

.message-box.success * {
  color: #45ba3c;
}

.message-box.success .btn {
  color: white;
  background: #45ba3c;
}

.message-box.error {
  border-color: #ae1f1f;
}

.message-box.error * {
  color: #ae1f1f;
}

.message-box.error .btn {
  color: white;
  background: #ae1f1f;
}

.spModalLayer {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
  background-color: white;
  z-index: 100000;
}
.spModalLayer .icon_container {
  position: absolute;
  top: -32px;
  right: -5px;
  z-index: 99999;
}

.spModalLayer_closebtn {
  width: 32px;
  height: 32px;
  position: absolute;
  top: 0px;
  right: 3px;
  cursor: pointer;
  z-index: 100;
  opacity: 1;
  background: #333333;
}

.spModalLayer_closebtn:before, .spModalLayer_closebtn:after {
  position: absolute;
  top: 7px;
  right: 15px;
  content: ' ';
  height: 19px;
  width: 2px;
  background-color: #fff;
}

.spModalLayer_closebtn:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.spModalLayer_closebtn:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.spModalLayer_cinema {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border: 0;
  background: #0a0a0a;
  opacity: 0.74;
  -webkit-opacity: 0.74;
  -moz-opacity: 0.74;
  z-index: 99999;
}

.selectionCustomer,
.selectionOffice {
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  background: white;
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 576px) {
  .selectionCustomer,
  .selectionOffice {
    font-size: 10px;
    line-height: 15px;
  }
}
.selectionCustomer .titleSelection,
.selectionOffice .titleSelection {
  font-size: 22px;
  line-height: 33px;
  color: #F04B48;
}
@media (max-width: 576px) {
  .selectionCustomer .titleSelection,
  .selectionOffice .titleSelection {
    font-size: 13px;
    line-height: 19px;
  }
}
.selectionCustomer input[type=search].form-control,
.selectionOffice input[type=search].form-control {
  border: 1px solid #E0E0E0;
  padding: 4px 10px;
  margin-bottom: 5px;
}
.selectionCustomer .selection-box .selection-box-header,
.selectionOffice .selection-box .selection-box-header {
  padding: 20px 0;
}
.selectionCustomer .selection-box .selection-box-header h4,
.selectionOffice .selection-box .selection-box-header h4 {
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  font-size: 24px;
  line-height: 36px;
  font-size: 20px;
  line-height: 30px;
  text-transform: none;
}
@media (max-width: 576px) {
  .selectionCustomer .selection-box .selection-box-header h4,
	.selectionOffice .selection-box .selection-box-header h4  {
    font-size: 14px;
    line-height: 21px;
  }
}
@media (max-width: 576px) {
  .selectionCustomer .selection-box .selection-box-header h4,
	.selectionOffice .selection-box .selection-box-header h4  {
    font-size: 18px;
    line-height: 22px;
  }
}
.selectionCustomer .selection-box .selection-box-main,
.selectionOffice .selection-box .selection-box-main {
  font-size: 22px;
  line-height: 33px;
}
@media (max-width: 576px) {
  .selectionCustomer .selection-box .selection-box-main,
.selectionOffice .selection-box .selection-box-main  {
    font-size: 13px;
    line-height: 19px;
  }
}
.selectionCustomer .selection-box .selection-box-main ul li,
.selectionOffice .selection-box .selection-box-main ul li {
  background: #F2F2F2;
  margin-bottom: 5px;
  padding: 10px;
}
.selectionCustomer .selection-box .selection-box-main ul li input,
.selectionOffice .selection-box .selection-box-main ul li input {
  display: none;
}
.selectionCustomer .selection-box .selection-box-main ul li input + label,
.selectionOffice .selection-box .selection-box-main ul li input + label {
  display: block;
  padding: 0 0 0 40px;
  margin: 0;
  cursor: pointer;
  position: relative;
  color: #4F4F4F;
}
.selectionCustomer .selection-box .selection-box-main ul li input + label:hover,
.selectionOffice .selection-box .selection-box-main ul li input + label:hover {
  color: var(--primary-color);
}
.selectionCustomer .selection-box .selection-box-main ul li input + label::before,
.selectionOffice .selection-box .selection-box-main ul li input + label::before {
  content: url(../img/unchecked.png);
  position: absolute;
  width: 30px;
  height: 30px;
  top: 0;
  left: 0px;
  margin: -3px 0 0 0px;
}
.selectionCustomer .selection-box .selection-box-main ul li input:checked + label::before,
.selectionOffice .selection-box .selection-box-main ul li input:checked + label::before {
  content: url(../img/checked.png);
}
.selectionCustomer .selection-box .selection-box-footer,
.selectionOffice .selection-box .selection-box-footer  {
  padding: 20px 0;
  text-align: right;
}
.selectionCustomer .selection-box .selection-box-footer .btn.btn-primary,
.selectionOffice .selection-box .selection-box-footer .btn.btn-primary {
  color: white;
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  font-size: 20px;
  line-height: 30px;
  padding: 10px 20px;
  width: 100%;
  margin: 3px 0;
}
@media (max-width: 576px) {
  .selectionCustomer .selection-box .selection-box-footer .btn.btn-primary,
 .selectionOffice .selection-box .selection-box-footer .btn.btn-primary  {
    font-size: 14px;
    line-height: 22px;
  }
}
.selectionCustomer .selection-box .selection-box-footer .btn.btn-secondary,
.selectionOffice .selection-box .selection-box-footer .btn.btn-secondary  {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  color: var(--btn-secondary-txt-color);
  background: var(--btn-secondary-bg-color);
  border: none;
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1;
  padding: 10px 20px;
  outline: none;
  font-size: 20px;
  line-height: 30px;
  padding: 10px 20px;
  width: 100%;
  margin: 3px 0;
}
@media (max-width: 576px) {
  .selectionCustomer .selection-box .selection-box-footer .btn.btn-secondary,
.selectionOffice .selection-box .selection-box-footer .btn.btn-secondary  {
    font-size: 14px;
    line-height: 22px;
  }
}
.selectionCustomer .selection-box .selection-box-footer .btn.btn-secondary:hover,
.selectionCustomer .selection-box .selection-box-footer .btn.btn-secondary:active,
.selectionCustomer .selection-box .selection-box-footer .btn.btn-secondary:focus,
.selectionOffice .selection-box .selection-box-footer .btn.btn-secondary:hover,
.selectionOffice .selection-box .selection-box-footer .btn.btn-secondary:active,
.selectionOffice .selection-box .selection-box-footer .btn.btn-secondary:focus {
  color: var(--btn-secondary-hover-txt-color);
  background: var(--btn-secondary-hover-bg-color);
  border: none;
  -moz-box-shadow: 1px 1px 8px 0px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 1px 1px 8px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 1px 1px 8px 0px rgba(0, 0, 0, 0.5);
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.selectionCustomer .selection-box .selection-box-navbar,
.selectionOffice .selection-box .selection-box-navbar {
  padding: 10px 0 0 0;
}
.selectionCustomer .selection-box .selection-box-navbar .navbar,
.selectionOffice .selection-box .selection-box-navbar .navbar {
  padding: 0;
  justify-content: center;
}

@media (min-width: 1500px) {
  .container {
    max-width: 1470px;
  }
  .registration-section .form-wrapper {
    padding-left: 250px;
    padding-right: 250px;
  }
  .footer-shortlinks .footer-box .footer-box-title.nav-title {
    cursor: default;
    border: 0;
  }
  .footer-shortlinks .footer-box .footer-box-title.nav-title h4 {
    position: relative;
  }
  .footer-shortlinks .footer-box .footer-box-title.nav-title h4::after {
    display: none;
  }
}

@media (min-width: 1500px) {
  .contact-section .form-wrapper {
    padding: 40px 145px;
  }
}

@media (min-width: 992px) {
  .header-link-wrapper .header-link-text, .header-link-wrapper a .header-link-text {
    display: block;
  }
  .header-link-wrapper .header-link-icon {
    height: 32px;
  }
  .logo-bar .col-logo img {
    height: 60px;
  }
  .logo-bar .user_toolbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	align-items: center;
  }
  .modal-search-input {
    width: 60%;
  }
  .main-home {
    background: #F2F2F2;
    min-height: 500px;
    padding-bottom: 90px;
  }
  .main-home .contentsFlex {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
  }
  .main-home .contentsFlex img {
    width: 100%;
    display: block;
  }
  .main-home .contentsFlex .flex-control-paging li a {
    border: 0;
  }
  .main-home .home-category-list {
    margin-top: 80px;
  }
  
  /*
  .main-section, .product-section {
    padding: 50px 0;
  }*/
  .product-section .col-art-right {
    padding: 0 30px 0 50px;
  }
  /*
  .product-section .product-gallery-main.owl-carousel .owl-item {
    height: 500px;
  }
  .product-section .product-gallery-main.owl-carousel .owl-item img {
    max-height: 460px;
  }
  */
  .product-section .product-info .product-title-wrapper h1 {
    text-align: left;
  }
  .product-section .product-info .product-variants-wrapper {
    background: #F2F2F2;
    padding: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
    margin-top: 45px;
  }
  .product-section .product-info .product-variants-wrapper .product-format {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
  }
  .product-section .product-info .product-variants-wrapper .product-format label.title {
    padding-right: 30px;
  }
  .product-section .product-info .product-variants-wrapper .product-add {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 30px 0 0 0;
  }
  .product-section .product-info .product-variants-wrapper .product-add .number-input button {
    width: 46px;
    height: 66px;
  }
  .product-section .product-info .product-variants-wrapper .product-add .number-input input[type=number] {
    max-width: 75px;
    height: 66px;
  }
  .product-section .product-info .product-variants-wrapper .product-add .product-price {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
  }
}

@media (min-width: 992px) and (min-width: 992px) {
  .product-section .product-info .product-variants-wrapper .product-add .product-price {
    font-size: 28px;
    line-height: 41px;
  }
}

@media (min-width: 992px) {
  .product-section .product-info .product-variants-wrapper .product-add .product-price.prev-price {
    color: #4F4F4F;
    font-weight: 400;
    padding: 0 10px;
    position: relative;
  }
  .product-section .product-info .product-variants-wrapper .product-add .product-price.prev-price::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 0px;
    margin-left: -35px;
    width: 70px;
    height: 1px;
    border-bottom: 1px solid #808080;
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
  }
  .product-section .product-info .product-variants-wrapper .product-add .button {
    padding: 10px 20px;
    width: auto;
  }
  .product-section .product-info .product-variants-wrapper .product-add .button::after {
    right: 15px;
    width: 30px;
    height: 30px;
  }
  .product-section .product-info .product-variants-wrapper .product-add .product-buttons .btn-add-favourite {
    width: 25px;
    height: 25px;
    margin: 20px 10px 0 0;
    content: url(../img/heart-icon.png);
    cursor: pointer;
  }
  .product-section .product-info .product-variants-wrapper .product-add .product-buttons .btn-add-favourite.selected {
    content: url(../img/heart-icon-selected.png);
  }
  .product-section .product-info .product-variants-wrapper .product-add .product-availability span.available::after {
    content: url(../img/available.png);
  }
  .product .product-discount {
    width: 50px;
    height: 50px;
    top: 15px;
    right: 15px;
    line-height: 50px;
  }
  .product .product-image {
    height: 220px;
  }
  .product .product-image img {
    min-height: 200px;
  }
  .product .product-info .product-name h3 {
    height: 30px;
  }
  .product .product-info .product-links .button {
    position: relative;
    line-height: 40px;
    padding: 0px 45px 0px 15px;
  }
  .product .product-info .product-links .button::after {
    right: 10px;
    display: block;
  }
  .product .product-info .product-links .icon-trash::after {
    zoom: 100%;
  }
  .contact-section .form-wrapper {
    padding: 40px 80px;
  }
  .contact-section .form-wrapper h4 {
    padding: 20px 15px 45px 15px;
  }
  .content-account {
    margin-left: 20px;
  }
  .content-account .table-account-wrap .table-account .icon-copy::after, .content-account .table-account-wrap .table-account .icon-print::after, .content-account .table-account-wrap .table-account .icon-validate::after, .content-account .table-account-wrap .table-account .icon-modify::after, .content-account .table-account-wrap .table-account .icon-trash::after {
    zoom: 100%;
  }
  .footer-shortlinks .footer-box .categoryMenuFlat {
    display: block;
  }
  .basket-section .column-title {
    margin-bottom: 10px;
  }
  .basket-section .items-list .product-item .product-image {
    width: 150px;
  }
  .basket-section .items-list .product-item .product-features {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-flex: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 30px;
  }
  .basket-section .items-list .product-item .product-features .product-info {
    width: 30%;
  }
  .basket-section .items-list .product-item .product-features .product-quantity {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 20%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .basket-section .items-list .product-item .product-features .product-quantity .column-title {
    margin-right: 0;
  }
  .basket-section .items-list .product-item .product-features .product-quantity .form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0;
  }
  .basket-section .items-list .product-item .product-features .product-quantity .form-group .form-control {
    width: 100px;
    height: 60px;
    text-align: right;
    border-radius: 4px;
  }
  .basket-section .items-list .product-item .product-features .product-quantity .form-group .icon-update::after {
    zoom: 100%;
  }
  .basket-section .items-list .product-item .product-features .product-format {
    width: 20%;
  }
  .basket-section .items-list .product-item .product-features .product-prices {
    width: 30%;
  }
  .basket-section .items-list .product-item .product-features .product-prices .product-price {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .basket-section .items-list .product-item .product-features .product-remove {
    position: relative;
  }
  .basket-section .items-list .product-item .product-features .product-remove .column-title {
    display: inline-block;
  }
  .basket-section .items-list .product-item .product-features .product-remove .icon-trash {
    cursor: pointer;
  }
  .basket-section .items-list .product-item .product-features .product-remove .icon-trash::after {
    zoom: 100%;
  }
  .basket-section .basket-totals {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 30px 0;
  }
  .basket-section .basket-totals .col-totals {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .basket-section .basket-totals .col-totals .col-prices {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: none;
  }
  .basket-section .basket-totals .col-totals .col-prices .title-prices {
    display: inline-block;
  }
  .basket-section .basket-totals .col-totals .col-prices .prices-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
  .basket-section .basket-totals .col-totals .col-prices .prices-list li {
    display: inline-block;
  }
  .basket-section .basket-totals .col-totals .col-prices .prices-list li.first-row {
    display: none;
  }
  .basket-section .basket-totals .col-totals .col-prices .prices-list li .label-price {
    width: auto;
    text-align: left;
    padding: 0 10px 0 0;
  }
  .basket-section .basket-totals .col-totals .col-prices .prices-list li .price {
    width: auto;
    text-align: left;
  }
  .basket-section .basket-totals .col-totals .col-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .basket-section .basket-totals .col-totals .col-buttons .big-label-price {
    display: inline-block;
  }
  .basket-section .basket-totals .col-totals .col-buttons .basket-total {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 0;
  }
  .basket-section .basket-totals .col-totals .col-buttons .basket-links {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 40px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .basket-section .basket-totals .col-totals .col-buttons .basket-links .btn {
    margin: 0 0 0 20px;
  }
  .basket-section .basket-totals .prices-summary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .basket-section .basket-totals .prices-summary label {
    display: block;
  }
  .basket-section .basket-totals .prices-summary .label-price {
    font-size: 16px;
    line-height: 1;
  }
  .basket-section .basket-totals .prices-summary .big-label-price {
    text-transform: uppercase;
    font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
    line-height: 1;
    font-size: 18px;
    line-height: 22px;
    font-weight: 300;
    margin-top: 10px;
  }
}

@media (min-width: 992px) and (min-width: 992px) {
  .basket-section .basket-totals .prices-summary .big-label-price {
    font-size: 32px;
    line-height: 48px;
  }
}

@media (min-width: 992px) {
  .basket-section .basket-totals .prices-summary .big-price {
    text-transform: uppercase;
    font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
    line-height: 1;
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    margin-top: 10px;
  }
}

@media (min-width: 992px) and (min-width: 992px) {
  .basket-section .basket-totals .prices-summary .big-price {
    font-size: 32px;
    line-height: 48px;
  }
}

@media (min-width: 992px) {
  .basket-section .basket-totals .prices-summary .col-buttons {
    padding-left: 30px;
    text-align: right;
  }
  .basket-section .basket-totals .btn-primary {
    border-radius: 4px;
    background-color: var(--btn-primary-bg-color);
    color:var(--btn-primary-txt-color);
    text-transform: uppercase;
    font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
    line-height: 1;
    padding: 10px 20px;
    outline: none;
    border: none;
    padding: 20px 20px;
    font-size: 14px;
    line-height: 21px;
    font-weight: 600;
  }
}

@media (min-width: 992px) and (min-width: 992px) {
  .basket-section .basket-totals .btn-primary {
    font-size: 24px;
    line-height: 36px;
  }
}

@media (min-width: 992px) {
  .basket-section .basket-totals .btn-primary:hover {
    background-color: var(--btn-primary-hover-bg-color);
    color:var(--btn-primary-hover-txt-color);
    border: none;
    -webkit-box-shadow: 1px 1px 8px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 1px 1px 8px 0px rgba(0, 0, 0, 0.5);
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
  }
  .basket-section .basket-totals .btn-secondary {
    border-radius: 4px;
    background-color: var(--btn-secondary-bg-color);
    color:var(--btn-secondary-txt-color);
    border: none;
    text-transform: uppercase;
    font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
    line-height: 1;
    padding: 10px 20px;
    outline: none;
    padding: 20px 20px;
    font-size: 14px;
    line-height: 21px;
    font-weight: 600;
  }
}

@media (min-width: 992px) and (min-width: 992px) {
  .basket-section .basket-totals .btn-secondary {
    font-size: 24px;
    line-height: 36px;
  }
}

@media (min-width: 992px) {
  .basket-section .basket-totals .btn-secondary:hover, .basket-section .basket-totals .btn-secondary:active, .basket-section .basket-totals .btn-secondary:focus {
    background-color: var(--btn-secondary-hover-bg-color);
    color:var(--btn-secondary-hover-txt-color);
    border: none;
    -webkit-box-shadow: 1px 1px 8px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 1px 1px 8px 0px rgba(0, 0, 0, 0.5);
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
  }
  .basket-section .basket-totals h3 {
    text-transform: uppercase;
    font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
    line-height: 1;
    font-size: 14px;
    line-height: 21px;
  }
}

@media (min-width: 992px) and (min-width: 992px) {
  .basket-section .basket-totals h3 {
    font-size: 24px;
    line-height: 36px;
  }
}

@media (min-width: 992px) {
  .basket-section .basket-details {
    padding: 30px 0;
  }
  .basket-section .summary-header {
    padding: 20px 30px;
  }
  .basket-section .summary-header .summary-info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .basket-section .summary-header .summary-info .summary-info-item {
    padding-right: 50px;
  }
  .modify-box .modify-box-main ul li input + label::before {
    margin: 3px 0 0 0px;
  }
  .checkout-section .checkout-functions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .checkout-section .checkout-functions .checkout-box {
    width: 31%;
    padding: 20px 30px;
    margin-bottom: 30px;
    min-height: 200px;
  }
  .checkout-section .checkout-functions .checkout-box .icon-modify {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
  }
  .checkout-section .checkout-functions .checkout-box .icon-modify::after {
    content: url(../img/modify-icon.png);
  }
  .checkout-section .checkout-functions .checkout-box .icon-modify.active::after {
    content: url(../img/modify-icon-active.png);
  }
}

/* PRELOADER */
.loading-wrap {
  background-color: var(--primary-color);
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 999;
  margin-top: 0px;
  top: 0px;
}

.loading-wrap .loading-content {
  font-size: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  text-indent: -9999em;
  width: 100px;
  height: 100px;
  margin-top: -50px;
  margin-left: -50px;
  border-radius: 50%;
  background: white;
  background: -webkit-gradient(linear, left top, right top, color-stop(10%, white), color-stop(42%, rgba(240, 75, 72, 0)));
  background: linear-gradient(to right, white 10%, rgba(240, 75, 72, 0) 42%);
  -webkit-animation: load3 1.4s infinite linear;
  animation: load3 1.4s infinite linear;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.loading-wrap .loading-content::before {
  width: 50%;
  height: 50%;
  background: white;
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
}

.loading-wrap .loading-content::after {
  background: var(--primary-color);
  width: 75%;
  height: 75%;
  border-radius: 50%;
  content: '';
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.loading-wrap .loading-center .loading-content {
  font-size: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  text-indent: -9999em;
  width: 100px;
  height: 100px;
  margin-top: -50px;
  margin-left: -50px;
  border-radius: 50%;
  background: white;
  background: -webkit-gradient(linear, left top, right top, color-stop(10%, white), color-stop(42%, rgba(240, 75, 72, 0)));
  background: linear-gradient(to right, white 10%, rgba(240, 75, 72, 0) 42%);
  -webkit-animation: load3 1.4s infinite linear;
  animation: load3 1.4s infinite linear;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.loading-wrap .loading-center .loading-content::before {
  width: 50%;
  height: 50%;
  background: white;
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
}

.loading-wrap .loading-center .loading-content::after {
  background: var(--primary-color);
  width: 75%;
  height: 75%;
  border-radius: 50%;
  content: '';
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.loading-wrap.loaded {
  display: none;
}

@-webkit-keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@media (min-width: 768px) {
  .main-general {
    padding-bottom: 90px;
  }
  .main-home {
    padding-bottom: 90px;
  }
  .main-home-section {
    min-height: 355px;
  }
  .main-home-section .recommended-list-title {
    display: none;
  }
  /*
  .main-home-section .owl-carousel .owl-nav {
    top: -60px;
  }
  .main-home-section .owl-carousel .owl-nav button.owl-prev {
    width: 50px;
    height: 50px;
  }
  .main-home-section .owl-carousel .owl-nav button.owl-prev::after {
    width: 12px;
    height: 12px;
    margin-top: -6px;
    margin-left: -4px;
  }
  .main-home-section .owl-carousel .owl-nav button.owl-next {
    width: 50px;
    height: 50px;
  }
  .main-home-section .owl-carousel .owl-nav button.owl-next::after {
    content: "";
    width: 12px;
    height: 12px;
    margin-top: -6px;
    margin-left: -6px;
  }
  */
  .main-home-section .section-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 355px;
    font-size: 24px;
    line-height: 30px;
  }
  .main-home-section .product {
    height: 355px;
  }
  /*
  .home-category-list .owl-carousel .owl-nav {
    top: -60px;
  }
  .home-category-list .owl-carousel .owl-nav button.owl-prev {
    width: 50px;
    height: 50px;
  }
  .home-category-list .owl-carousel .owl-nav button.owl-prev::after {
    width: 12px;
    height: 12px;
    margin-top: -6px;
    margin-left: -4px;
  }
  .home-category-list .owl-carousel .owl-nav button.owl-next {
    width: 50px;
    height: 50px;
  }
  .home-category-list .owl-carousel .owl-nav button.owl-next::after {
    content: "";
    width: 12px;
    height: 12px;
    margin-top: -6px;
    margin-left: -6px;
  }
  */
  main .title-space, main .contentText {
    padding-bottom: 30px;
  }
  .list-title-home {
    height: 50px;
  }
  .list-title-home h2 {
    padding: 10px 25px;
  }
  .login-section .form-wrapper h4 {
    text-align: left;
  }
  .login-section .form-wrapper .form-group .button {
    width: auto;
  }
  .login-section .form-wrapper a.link {
    text-align: left;
  }
  .login-section .form-wrapper .text-wrapper {
    min-height: 200px;
  }
  .login-section .form-wrapper .button-wrapper.logged {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .login-section .form-wrapper .button-wrapper.logged .btn {
    width: 40%;
  }
  .main-home-categories {
    padding-bottom: 60px;
  }

  .items-grid-layout .product .product-discount {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 15px;
    right: 15px;
    text-align: center;
    line-height: 50px;
    color: white;
    background: var(--primary-color);
    border-radius: 50%;
    z-index: 6;
  }
  .items-grid-layout .product .product-image {
  }
  .items-grid-layout .product .product-image img {
  }
  .items-grid-layout .product .product-info {
    min-height: 132px;
  }
  .items-list-layout {
    padding-bottom: 60px;
  }

  .items-list-layout .product .product-image img {
    max-height: 200px;
  }
  .items-list-layout .product .product-info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 45px;
  }
  .items-list-layout .product .product-info .product-name {
    width: 50%;
    text-align: left;
  }
  .items-list-layout .product .product-info .product-name .description {
  }
  .registration-section {
    padding: 80px 30px;
  }
  .registration-section h4 {
    text-align: right;
    margin: 20px 0 20px 0;
  }
  .registration-section .form-wrapper .form-group {
    font-size: 13px;
    line-height: 19px;
  }
}

@media (min-width: 768px) and (min-width: 992px) {
  .registration-section .form-wrapper .form-group {
    font-size: 22px;
    line-height: 33px;
  }
}

@media (min-width: 768px) {
  .registration-section .form-wrapper .form-group .control-label {
    text-align: right;
  }
  .account-section .form-wrapper label {
    text-align: right;
  }
  .footer-shortlinks .footer-box .footer-box-title {
    padding: 10px 0;
  }
}
/*# sourceMappingURL=theme.css.map */

/*CUSTOM*/
.header-link-wrapper .link {
  position: relative;
}

.header-link-wrapper .link-icon {
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  margin: 0 auto;
}

.header-link-wrapper .link-icon.disabled {
  opacity: 0.5;
}

.header-link-wrapper .link-text, .link-wrapper a .link-text {
  display: none;
  font-weight: 700;
  color: var(--dark-color);
  font-size: 14px;
}

@media (min-width: 992px) {
  .header-link-wrapper .link-text, .header-link-wrapper a .link-text {
    display: block;
  }
  .header-link-wrapper .link-icon {
    height: 32px;
  }
}

/* Badge promo,confronto, preferiti */

.items-grid-layout .product .product-badge-left,
.items-grid-layout .product .product-badge-right{
	position: absolute;
	display: inline-block;
	top: 0;
}

.items-grid-layout .product .product-badge-left {
	left: 0;
}
.items-grid-layout .product .product-badge-right {
	right: 0;
}
.items-grid-layout .product .promo-sale {
	display: block;
}
.items-grid-layout .product .promo-sale::after,
.items-list-layout .product .promo-sale::after {
	content: 'Promo';
	position: absolute;
	top: 0px;
	left: 0px;
	display: block;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 0 5px;
  line-height: 32px;
  background-color: var(--light-bg-color);
  color: var(--light-txt-color);
}
.items-grid-layout .product .product-discount {
	position: static;
	width: auto;
	height: auto;
	border-radius: 0;
	line-height: 24px;
	padding: 5px 8px;
}
.items-list-layout .product .product-badge-left,
.items-list-layout .product .product-badge-right {
	position: absolute;
	top: 0;
}
.items-list-layout .product .product-badge-left {
	left: 0;
}
.items-list-layout .product .product-badge-right {
	right: 2px;
	top: 2px;
}
.items-list-layout .product .promo-sale {
	display: block;
}

.items-list-layout .product .product-discount {
	position: static;
	width: auto;
	height: auto;
	border-radius: 0;
	line-height: 24px;
	padding: 5px 8px;
}
.items-list-layout .product .favourite,
.items-list-layout .product .compare {
	position: relative;
	float: left;	
	cursor: pointer;
}

/* Immagine */
.items-grid-layout .product .product-image {
    margin: 0;
    height: 330px;
}

.items-list-layout .product .product-image{
    margin: 0;
    display: inline-block;
}

.items-grid-layout .product .product-image img{
    width: 100% !important;
    object-fit: cover;
    max-height: 350px;
    height: 100%;
}

.items-list-layout .product .product-image img {
    width: 100% !important;
    object-fit: cover;
    height: 100%;
    max-height: 250px;
}

/*pulsanti azioni aggiungi a carrello e scheda*/
.items-grid-layout .product .product-info .product-links{
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-end;
}
.items-list-layout .product .product-info .product-links {
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-end;
}

.items-grid-layout .product .product-info .product-links .select-quantity{
  	padding-right: 25px;
	flex: 0 1 auto;
	display: none;  
}
.items-list-layout .product .product-info .product-links .select-quantity {
	padding-right: 25px;
	flex: 0 1 auto;
	display: inline-flex;
}
.items-grid-layout .product .product-info .product-links .sel,
.items-grid-layout .product .product-info .product-links .number-input,
.items-list-layout .product .product-info .product-links .sel,
.items-list-layout .product .product-info .product-links .number-input {
	float: left;
}
.items-grid-layout .product .product-info .product-links .sel,
.items-list-layout .product .product-info .product-links .sel {
	display: inline-block;
	width: 100%;
}
.items-grid-layout .product .product-info .product-links .sel .comboUM-cat,
.items-list-layout .product .product-info .product-links .sel .comboUM-cat {
	border: 0;
	margin-bottom: 0px;
	width: 100%;
	height: 40px;
	font-size: 14px;
	background-color: #e0e0e0;
}
.items-grid-layout .product .product-info .product-links .number-input,
.items-list-layout .product .product-info .product-links .number-input {
	border: 0;
}
.items-grid-layout .product .product-info .product-links .number-input input,
.items-list-layout .product .product-info .product-links .number-input input {
	width: 50px;
	height: 40px;
	padding: 0;
	text-align: center !important;
	border: 1px solid #ddd;
}
.items-grid-layout .product .product-info .product-links .add-to-basket,
.items-list-layout .product .product-info .product-links .add-to-basket {
	flex: 0 0 auto;
}
.items-grid-layout .product .product-info .product-links .add-to-basket a,
.items-list-layout .product .product-info .product-links .add-to-basket a {
	float: right;
	width: 40px;
	height: 40px;
	padding: 0;
}
.items-grid-layout .product .product-info .product-links .add-to-basket a::after,
.items-list-layout .product .product-info .product-links .add-to-basket a::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	margin-top: 0;
	width: 40px;
	height: 40px;
	background: url(../img/white-cart-icon.png) center center no-repeat;
}
.items-grid-layout .product .product-info .product-links .goto-sheet {
	/*width: 100%;*/
	text-align: center;
}
.items-list-layout .product .product-info .product-links .goto-sheet {
	/*width: 100%;*/
	text-align: right;
}
.items-grid-layout .product .product-info .product-links .goto-sheet a,
.items-list-layout .product .product-info .product-links .goto-sheet a {
	display: inline-block;
}

/*disponibilità*/
.product .product-info .product-availabilities {
    font-size: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.items-grid-layout .product .product-info .product-availabilities .availability *{
	padding-left:3px;
}
.items-list-layout .product .product-info .product-availabilities .availability * {
    padding-left:3px;
}

/*Offerta sconto e scadenza*/
.items-grid-layout .product .product-info .product-offer-prices {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    margin: 10px;
}

.items-list-layout .product .product-info .product-offer-prices {
    display: flex;
    flex-wrap: nowrap;
    flex: 0.5 0 auto;
}

.items-grid-layout .product .product-info .product-offer,
.items-list-layout .product .product-info .product-offer {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    height: 27px;
    margin: 3px 0;
    font-weight: 400;
    font-size: 14px;
}

.items-grid-layout .product .product-info .product-offer .perc-discount,
.items-list-layout .product .product-info .product-offer .perc-discount{
	color:var(--light-color);
	font-weight: 600;
}

.items-grid-layout .product .product-info .product-offer .price-timer,
.items-list-layout .product .product-info .product-offer .price-timer{
    color: var(--light-color);
}

.items-list-layout .product .product-info .product-prices{
	justify-content:flex-end;
}
.items-grid-layout .product .product-info{
	min-height: 180px;
	justify-content: space-between;
}

/* Product name */
.items-list-layout .product .product-info .product-name{
    width: 100%;
}

.items-list-layout .product .product-info a.product-name{
    width:auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    padding-right: 80px;
	height:32px;
}

.items-list-layout .product .product-info .product-name h3{
	margin-bottom: 5px;
	overflow: hidden;
}

.items-list-layout .product .product-info .product-name .description p {
    font-size: inherit;
    line-height: inherit;
}

@media (min-width: 768px) {


 .items-list-layout .product .product-info{
 	padding: 10px;
 	display: flex;
 	flex-direction: column;
 	height: 250px;
 }
   
  /* Immagine */
 .items-list-layout .product .product-image{
    height: 250px;
    width:200px;
 }
 
}

@media (min-width: 1200px) { 
  
  .items-list-layout .product .product-info{
    display: flex;
  }
  .items-list-layout .product .product-info .product-links .button {
    position: relative;
    
  }
  .items-list-layout .product .product-info .product-name .description{
  	line-height: 22px;  
    font-size: 14px;
    line-height: 22px;
    color: #828282;
    height: 60px;
    overflow: hidden;
    display:block;  
  }

  .items-list-layout .product .product-info .product-offer-prices{  	
    display: flex;  	
    flex-direction: row;  	
    justify-content: space-between;
    align-items: center;
  }

  .items-list-layout .product .product-info .product-offer {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    height: 27px;
    margin: 3px 0;
    font-weight: 400;
    font-size: 12px;
    flex-grow: 0.5;
  }

}

@media (min-width: 768px) {

  .items-list-layout .product .product-info .product-offer-prices{  	
    display: flex;  	
    flex-direction: row;  	
    justify-content: space-between;
    align-items: center;
  }

  
  .items-list-layout .product .product-info .product-offer {
      display: flex;
      align-items: center;
      flex-direction: row;
      justify-content: space-between;
      height: 27px;
      margin: 3px 0;
      font-weight: 400;
      font-size: 14px;
      flex-grow: 0.2;
  }

  .items-grid-layout .product .product-info .product-links .select-quantity{
    display: contents;
  }
}

/************* Gadget dettaglio promozione ********************/
.promo-detail .promotion {
	margin-bottom: 50px;
}

.promo-detail .promotion .promo-content{
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 100%;
	text-align: center;
	padding: 0 1em;
}

.promo-detail .promotion .promo-content .title{
	text-shadow: 0 2px 3px rgba(0,0,0,.15);
	font-weight: 700;
	margin-bottom: 0;
	text-transform: uppercase;
	color: #ffffff;
	line-height: 1.5;
	font-size: 3rem;
}

.promo-detail .promotion .promo-content .subtitle{
	text-shadow: 0 2px 3px rgb(0 0 0 / 15%);
	font-weight: 600;
	color: #ffffff;
	font-size: 1.5rem;
}

.promo-detail .promotion .image-container {
	position: relative;
	margin-bottom: 20px;
	min-height: 150px;
	background: #c595a8;
}
.promo-detail .promotion .image-container .effect {
	font-weight: 700;
	font-size: 40px;
	line-height: 40px;
	margin-bottom: 0;
	text-transform: uppercase;
}
.promo-detail .promotion .image-container .image {
	margin: 0;
	width: 100%;
	object-fit: cover;
	max-height: 350px;
}
.promo-detail .promotion .image-container .image img {
	width: 100%;
}
.promo-detail .promotion .description {
	font-size: 14px;
	margin-bottom: 20px;
	text-align: justify;
}

/* Gadget BOX Confronto */
.compare-box {
    height: auto !important;
    min-height: 125px;
    box-sizing: border-box;
    background-color: #f2f2f2;
    margin-bottom: 20px;
    border-top: 1px solid #eee;
    margin-left: 0px !important;
    padding: 20px;
}
.compare-box .title{
    display: block !important;
    font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 0px 20px 20px 0px !important;
    position: relative;
    color: var(--primary-color);
}
@media (min-width: 992px){
  .compare-box .title{
    font-size: 20px;
  }
}

.compare-box .title::after{
	display:none !important;
}

.compare-box .no-article {
    font-weight: 300;
    letter-spacing: -0.5px;
}
.compare-box .grid{
	display:table;
	border-collapse: collapse;
	width:100%;
	margin-bottom: 10px;
}
.compare-box .grid .grid-row{
	display: table-row;
	width: 100%;
	height: 140px;
	border-bottom: 1px solid #808080;
}
.compare-box .grid .grid-row div{
	display: table-cell;
	vertical-align: top;
	padding: 15px 5px 15px 0;
}
.compare-box .grid .img{width: 100px;}
.compare-box .grid .img img {
    margin: 0 auto;
    display: block;
	width: 100%;
    height: auto;
    min-height: 120px;
    object-fit: cover;
}
.compare-box .grid .grid-row .des {overflow: hidden;height: 100%;display: block;margin-left: 5px;font-weight: 600;}
.compare-box .grid .grid-row .rem{
	cursor:pointer;
	width: 24px;
	vertical-align: top;
	padding-right: 0;
}
.compare-box .grid .grid-row .rem::after {
  content: "\e972";
  display: block;
  font-family: 'icons8_win10';
  font-size: 20px;
  text-align: center;
  cursor: pointer;
  width: 24px;
  height: 24px;
  line-height: 24px;
  background-color: #ffffff;
  color: var(--dark-color);
}
.compare-box .grid .grid-row .rem:hover::after{
  background-color:var(--btn-primary-hover-bg-color);
  color: var(--btn-primary-hover-txt-color);
}

.compare-box .compare-content {}
.compare-box .compare-button {
	left: 15px;
	width: auto !important;
}
.compare-box .compare-button a{
	/*display: block;*/
	text-align: center;
}
.compare-box .compare-button a:hover{
    color: #ffffff;
}

/**************************************************************************/
/**************************** CONFRONTO ARTICOLI ****************************/
/**************************************************************************/
.compareContainer {
  margin-bottom: 20px;
  font-size: 13px;
  min-height: 0 !important;
}
.compareContainer .lblNoRecord {
  margin: 40px 0 20px !important;
  width: 100% !important;
  font-size: 18px;
  text-align: center;
}
.compareContainer .repeater .repeater_wrapper {
  display: flex;
  flex-flow: row nowrap;
  overflow-x: auto;
}
.compareContainer .repeater .repeater_wrapper .repeater_ele {
  border-top: 1px solid #dedede;
  border-right: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
  width: 250px;
  flex: 0 0 auto;
}
.compareContainer .repeater .repeater_wrapper .repeater_ele:first-child {
  background-color: #F0F0F0;
  width: 200px;
  border-left: 1px solid #dedede;
}
/* Articolo */
.compareArticoli {
  position: relative;
  height: auto !important;
}
/* Bottone rimuovi */
.compareArticoli .buttonDel-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 32px;
  background-color: var(--btn-primary-bg-color);
  color: var(--btn-primary-txt-color);
}
.compareArticoli.compareArticoliFirstCol .buttonDel-wrapper {
  display: none;
}
.compareArticoli .buttonDel-wrapper:hover {
  background: var(--btn-light-hover-bg-color);
  color: var(--btn-light-hover-txt-color);
}
.compareArticoli .buttonDel-wrapper::before {
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  content: '\ea24';
  font-family: 'icons8_win10';
  font-size: 30px;
  line-height: 32px;
  text-align: center;
}
.compareArticoli .buttonDel-wrapper .buttonDel {
  position: absolute;
  top: 0;
  margin: 0 !important;
  border: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}
/* Immagine */
.compareArticoli div.imgArt_ctrl {
  width: 100%;
  height: 250px;
  margin: 0;
}
.compareArticoli div.imgArt_ctrl a {
  display: block;
  width: 100%;
  height: 100%;
}
.compareArticoli.compareArticoliFirstCol div.imgArt_ctrl a {
  display: none;
}
.compareArticoli div.imgArt_ctrl .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Label descrizione */
.compareArticoli .desArt {
  height: 50px !important;
  margin: 10px 0 5px !important;
  padding: 0 10px;
}
.compareArticoli .desArt a {
  display: block;
  font-size: 16px;
  max-width: 100%;
  max-height: 50px;
  overflow: hidden;
  line-height: 25px;
}
/* Disponibilità */
.compareArticoli .boxDisponib {
  display: flex;
  flex-flow: row nowrap;
  justify-content: left;
  align-items: center;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 10px 10px;
}
.compareArticoli .dispLabel,
.compareArticoli .dispView {
  margin: 0 !important;
  color: #999999;
  font-size: 12px;
  line-height: 20px;
  width: auto !important;
  min-height: 0 !important;
}
.compareArticoli .dispView {
  color: var(--primary-color);
  padding-left: 5px;
}
/* Prezzi */
.compareArticoli .boxPriceWarning {
  width: 100% !important;
  min-height: 0 !important;
  height: 20px !important;
  margin: 0 !important;
}
.compareArticoli .boxPriceWarning .priceWarning {
  display: block !important;
  float: none !important;
  width: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  font-size: 10px;
  color: var(--primary-color);
  font-weight: bold;
  line-height: 20px;
  overflow: visible !important;
}
.compareArticoli .boxPriceFinal,
.compareArticoli .boxPrice {
  width: 100% !important;
  height: 30px !important;
  margin: 0 !important;
}
.compareArticoli .boxPriceFinal .priceFinal {
  margin: 0 !important;
  width: 100% !important;
  min-height: auto !important;
  line-height: 30px !important;
  color: var(--dark-color);
  font-size: 24px !important;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif !important;
}
.compareArticoli .boxPrice .price {
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  min-height: 0 !important;
  color: #999999;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  line-height: 30px;
}
.compareArticoli .boxPrice .price::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: 0px;
  margin-left: -35px;
  width: 70px;
  height: 1px;
  border-bottom: 1px solid #808080;
  -webkit-transform: rotate(-15deg);
  transform: rotate(-15deg);
}
/* Tabella attributi */
.compareArticoli .grid {
  margin: 0 !important;
  padding-top: 5px;
  height: auto !important;
}
.compareArticoli.compareArticoliFirstCol .grid table {
  width: calc(100% - 2px);
}
.compareArticoli .grid .grid_rowselected {
  color: inherit !important;
}
.compareArticoli.compareArticoliFirstCol .grid,
.compareArticoli.compareArticoliFirstCol .grid .grid_rowselected {
  font-weight: bold !important;
  text-transform: uppercase;
}
.compareArticoli .grid tr:nth-child(1) {
  display:none !important;
}
.compareArticoli .grid tr:nth-child(odd) {
  background-color: #FAF8F8;
}
.compareArticoli .grid tr:nth-child(even) {
  background-color: #eeeeee;
}
/* Aggiunta al carrello */
.compareArticoli .boxBasket {
  margin: 0 !important;
  width: 100% !important;
  min-height: 0 !important;
}
.compareArticoli .boxBasket *[style*=hidden] {
  display: none !important;
}
.compareArticoli .boxBasket table {
  table-layout: fixed;
  width: 100%;
}
.compareArticoli .boxBasket .boxBasket-content {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  padding: 0 5px 10px;
}
.compareArticoli .boxBasket .cmbUniMis,
.compareArticoli .boxBasket .txtQTA_ctrl,
.compareArticoli .boxBasket .qta,
.compareArticoli .boxBasket .addToBasket {
  float: none !important;
  margin: 0 !important;
  width: auto !important;
  min-height: 0 !important;
  height: 40px !important;
  line-height: 40px !important;
}
.compareArticoli .boxBasket .cmbUniMis,
.compareArticoli .boxBasket .txtQTA_ctrl,
.compareArticoli .boxBasket .addToBasket {
  margin-top: 10px !important;
}
.compareArticoli .boxBasket .cmbUniMis {
  max-width: calc(100% - 40px) !important;
  border: 0;
  margin-bottom: 0px;
  font-size: 14px !important;
  background-color: #e0e0e0;
  padding: 0 5px;
  flex: 1 0 auto;
}
.compareArticoli .boxBasket .qta {
  width: 40px !important;
  text-align: center;
  border: 1px solid #ddd;
}
.compareArticoli .boxBasket .addToBasket {
  width: 90px !important;
  height: 40px !important;
  text-align: center;
  background: var(--btn-primary-bg-color);
  color: var(--btn-primary-txt-color);
  text-transform: uppercase;
  border: 0;
  font-weight: bold;
  flex: 0 0 auto;
}
.compareArticoli .boxBasket .addToBasket:hover {
  background-color: var(--btn-primary-hover-bg-color);
  color: var(--btn-primary-hover-txt-color);
}

/*******************************************************/
/******************** GADGET SOCIAL ********************/
/*******************************************************/
.social-links li,
.social-links li a::before,
.social-sharer li,
.social-sharer li a::before {
	transition: background-color .2s ease-in-out, color .2s ease-in-out !important;
}
.social-links-portlet,
.social-sharer-portlet {
	min-height: 0 !important;
  min-width: 0 !important;
}
.social-links-portlet div[class$=_ctrl],
.social-sharer-portlet div[class$=_ctrl] {
	width: auto !important;
	padding-bottom: 10px;
}
.social-links-portlet .label,
.social-sharer-portlet .label {
	padding: 0;
	font-size: 1.5em;
	margin-bottom: 5px;
	width: auto !important;
}
.social-links,
.social-sharer {
	list-style: none;
	margin: 0;
	padding: 0;
}
.social-links li,
.social-sharer li {
	color: #fff !important;
	position: relative;
	display: inline-block;
	background: #000;
	text-align: center;
	font-size: 24px;
	margin: 0 5px 5px 0;
}
.social-links li:hover,
.social-sharer li:hover {
	background-color: #428bca !important;
}
.social-links li a,
.social-sharer li a {
	display: block;
	color: #fff !important;
	text-decoration: none;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 24px;
}
/*----------------------*/
/* PROFILI
/*----------------------*/
.social-links li {
	height: 40px;
	width: 40px;
	line-height: 40px;
}
.social-links li a {
	width: 100%;
	height: 100%;
}
.social-links li a::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	font-family: icons8_win10;
	font-size: 32px;
	line-height: 40px;
	content: '\f50f';
	color: #fff;
}
/*----------------------*/
/* CONDIVISIONE
/*----------------------*/
.social-sharer li {
	height: 30px;
	border-radius: 3px;
}
.social-sharer li a {
	height: 30px;
	padding: 0 10px;
}
.social-sharer li a::before {
	display: inline-block;
	line-height: 30px;
	font-family: icons8_win10;
	font-size: 18px;
	content: '\f50f';
	vertical-align: middle;
}
.social-sharer li a span {
	display: inline-block;
	vertical-align: middle;
	line-height: 30px !important;
}
/*----------------------*/
/* ICONE
/*----------------------*/
/* Background */
ul[class^="social-"] .facebook  { background: #4267B2; }
ul[class^="social-"] .instagram { background: #c619b8; }
ul[class^="social-"] .twitter   { background: #55acee; }
ul[class^="social-"] .pinterest { background: #cb2027; }
ul[class^="social-"] .reddit    { background: #ff4500; }
ul[class^="social-"] .youtube   { background: #ff0000; }
ul[class^="social-"] .linkedin  { background: #0077b5; }
ul[class^="social-"] .tumblr	{ background: #32506d; }
ul[class^="social-"] .vk		{ background: #4c6c91; }
ul[class^="social-"] .myspace   { background: #2a2a2a; }
ul[class^="social-"] .rss		{ background: #eb8314; }
/* Icons */
ul[class^="social-"] .icon-facebook::before  { content: '\ee23'; }
ul[class^="social-"] .icon-instagram::before { content: '\ef53'; }
ul[class^="social-"] .icon-twitter::before   { content: '\e907'; }
ul[class^="social-"] .icon-pinterest::before { content: '\ebd8'; }
ul[class^="social-"] .icon-reddit::before	 { content: '\ec49'; }
ul[class^="social-"] .icon-youtube::before   { content: '\e9e5'; }
ul[class^="social-"] .icon-linkedin::before  { content: '\ecf6'; }
ul[class^="social-"] .icon-tumblr::before	 { content: '\e900'; }
ul[class^="social-"] .icon-vk::before		 { content: '\e95d'; }
ul[class^="social-"] .icon-myspace::before   { content: '\f523'; }
ul[class^="social-"] .icon-rss::before       { content: '\ec98'; }
/* ESEMPIO CON IMMAGINE DI SFONDO */
ul[class^="social-"] .slbgimage { background-color: lightseagreen; }
ul[class^="social-"] .icon-slbgimage { background: url("../images/ico_rss.png") center/16px no-repeat; }
ul[class^="social-"] .icon-slbgimage::before { content: ''; }

/*******************************************************/
/******************** PAGINA FAQs   ********************/
/*******************************************************/

.gadget.faq > .title {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.gadget.faq > .title::after {
  display:none;
}
.gadget.faq > .title span::after {
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -35px;
  bottom: 0;
  width: 70px;
  height: 1px;
  border-bottom: 3px solid var(--primary-color);
}

.gadget.faq > .title span {
  color: #4f4f4f;
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 35px;
  line-height: 44px;
  display: block;
  text-align: center;
  padding: 20px;
  margin-top: 5px;
  margin-bottom: 25px;
  position: relative;
  font-weight: 500;
}

.gadget.faq .content {
  margin-bottom: 20px;
}
.gadget.faq .content .title {
  font-weight: bold;
}

.gadget.faq .content .abstract.collapsed {
  display: none;
}

/* Gadget promozione singola */
.promo-single .no-image,
.promo-products .no-image {
	background: #c595a8;
}
.promo-single .gadget,
.promo-products .gadget {
	margin-bottom: 20px;
}
.promo-products .price-info-label {
	flex: 0 0 100%;
}
.promo-single .promotion {
	width: 100%;
}
.promo-single .promotion .image img {
	width: 100%;
}
.promo-products .gadget {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
    width: 100%;
}
.promo-products .promotion {
    position: relative;
    width: 500px;
    margin: 0 20px 0 0;
    height: 350px;
	overflow: hidden;
}
.promo-products .promotion .image {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.promo-products .promotion .image img {
	height: 350px;
}
.promo-products .products {
  width: calc(100% - 520px);
}
.promo-products .slide .products {
    width: 100%;
}
.promo-products .slide .product .product-info {
  align-items: center;
}

.promo-products .slide .promotion {
  width: 100%;
  height: auto;
  padding: 10px;
}

.promo-products .slide .product {
  height: auto;
}
@media (max-width: 768px) {
	.promo-products .promotion,
	.promo-products .products {
		width: 100%;
		margin: 0;
	}
	.promo-products .promotion {
		height: auto;
		min-height: 250px;
	}
	.promo-products .promotion .image {
		position: static;
		transform: none;
	}
	.promo-products .promotion .image img {
		width: 100%;
		height: auto;
	}
	.promo-products .products {
		margin-top: 10px;
	}
}

/*---- Barra cookie ----*/
.cookie-bar {
	position: fixed;
	background: var(--highlight-bg-color);
	color:var(--highlight-txt-color);
	padding: 10px 20px 20px;
	z-index: 9999;
	overflow: hidden;
}
.cookie-bar .contentText {
	margin-bottom: 20px !important;
}
.cookie-bar .cb-enable {
	display: inline-block;
	margin-right: 20px;
	background: #fff;
	color: #333;
	padding: 10px 15px;
	text-transform: uppercase;
	transition: all .2s ease-in-out;
}
.cookie-bar .cb-enable:hover {
  background-color:var(--btn-primary-hover-bg-color);
  color: var(--btn-primary-hover-txt-color);
}
.cookie-bar .cb-policy {
	color: #fff;
}
.cookie-bar .cb-policy:hover {
	text-decoration: underline;
}

/*---- PLUGIN: Owl Carousel 2 ----*/
.gadget .owl-theme .owl-stage {
    display: flex;
    flex-wrap: wrap;
}
.gadget .owl-theme .owl-stage .owl-item {
    display: flex;
	flex-flow: column nowrap;
}
.gadget .owl-theme .owl-stage .owl-item > * {
	flex: 1 0 auto;
}
.gadget .owl-theme .owl-nav {
  text-align: right;
}
.gadget .owl-theme .owl-nav button.owl-prev,
.gadget .owl-theme .owl-nav button.owl-next {
  width: 40px;
  height: 40px;
  border: 0;
  color: var(--btn-light-txt-color);
  background: var(--btn-light-bg-color);
}
.gadget .owl-theme .owl-nav button.owl-prev:hover,
.gadget .owl-theme .owl-nav button.owl-next:hover {
  color: var(--btn-light-hover-txt-color);
  background: var(--btn-light-hover-bg-color);
}
.gadget .owl-theme .owl-nav button.owl-prev::before,
.gadget .owl-theme .owl-nav button.owl-next::before {
  width: 100%;
  height: 100%;
  line-height: 40px;
  font-family: 'icons8_win10';
  text-align: center;
}
.gadget .owl-theme .owl-nav button.owl-prev {
  left: auto;
  right: 40px;
}
.gadget .owl-theme .owl-nav button.owl-prev::before {
  content: "\f144";
}
.gadget .owl-theme .owl-nav button.owl-next::before {
  content: "\f145";
}
.gadget .owl-theme .owl-nav button.disabled,
.gadget .owl-theme .owl-nav button.disabled:hover {
  display: inline-block;
  background: transparent;
  cursor: default;
  opacity: 1;
  color: #dddddd;
}
.gadget .owl-theme .owl-dots {
  display: flex;
  justify-content: center;
  flex-flow: row nowrap;
  padding: 15px 0;
}
.gadget .owl-theme .owl-dots .owl-dot {
  display: block;
  margin: 0 5px;
  background: #999;
}
  
  /*---- GADGET: Common ----*/
  .products-alter .gadget,
  .products-featured .gadget {
    margin-bottom: 60px;
  }
  .products-alter .gadget > .title,
  .products-featured .gadget > .title,
  .promo-list .gadget > .title {
	display: flex;
	line-height: 50px;
	overflow: hidden;
  margin-bottom: 20px;
  }
  .products-alter .gadget > .title h3,
  .products-featured .gadget > .title h3,
  .promo-list .gadget > .title h3  {
	padding-right: 20px;
	font-size: 24px;
	font-weight: 500;
	color: #333333;
	flex: 0 0 auto;
	line-height: 50px;
  }
  .products-alter .gadget > .title::after,
  .products-featured .gadget > .title::after,
  .promo-list .gadget > .title::after {
	content: '';
	display: inline-block;
	height: 28px;
	border-bottom: 2px solid var(--primary-color);
	flex: 100 0 auto;
  }
  
  
/*---- GADGET: Articoli ----*/
.products-featured .product {
  position: relative;
  justify-content: space-between;
  overflow: hidden;
  height: 350px;
  max-width: 250px;
}
.products-featured .product:hover {
  box-shadow: none;
}
.products-featured .product .image {
  display: block;
  width: 100%;
  height: 200px;
  margin: 0;
  flex: 0 0 auto;
}
.products-featured .product .image img {
  display: block;
  width: 100% !important;
  max-height: 200px;
  object-fit: cover;
}
.products-featured .product .badge-left {
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0;
}
.products-featured .product .badge-right {
  position: absolute;
  display: inline-block;
  top: 0;
  right: 0;
}
.products-featured .product .promo-sale {
	display: block;
	margin-bottom: 5px;
}
.products-featured .product .promo-sale::after {
	content: 'Promo';
	display: block;
	background: var(--light-bg-color);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	color:var(--light-txt-color);
	padding: 0 5px;
	line-height: 32px;
}

.products-featured .product .discount {
	display: block;
	font-size: 12px;
	font-weight: 600;
	padding: 0 8px;
	line-height: 32px;
  width: fit-content;
  background-color: var(--light-bg-color);
  color: var(--light-txt-color);
}

.products-featured .product .info {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  height: auto;
  padding: 10px;
  flex: 1 0 auto;
}
.products-featured .product .info .name {
  text-align: center;
  max-height: 40px;
  overflow: hidden;
  line-height: 20px;
}
.products-featured .product .info .prices {
  font-size: 16px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-evenly;
}
.products-featured .product .info .prices .price-compare,
.products-featured .product .info .prices .price {
  padding: 0 5px;
  text-align: center;
}
/*pulsanti azioni aggiungi a carrello e scheda*/
.products-featured .product .product-info .product-links{
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-end;
}

.products-featured .product .product-info .product-links .select-quantity{
  	padding-right: 25px;
  	flex: 0 1 auto;
  	display: none;
}

.products-featured .product .product-info .product-links .sel,
.products-featured .product .product-info .product-links .number-input {
	float: left;
}
.products-featured .product .product-info .product-links .sel{
	display: inline-block;
	width: calc(100% - 50px);
}
.products-featured .product .product-info .product-links .sel .comboUM-cat {
	border: 0;
	margin-bottom: 0px;
	width: 100%;
	height: 40px;
	font-size: 14px;
	background-color: #e0e0e0;
}
.products-featured .product .product-info .product-links .number-input{
	border: 0;
}
.products-featured .product .product-info .product-links .number-input input{
	width: 50px;
	height: 40px;
	padding: 0;
	text-align: center !important;
	border: 1px solid #ddd;
}
.products-featured .product .product-info .product-links .add-to-basket{
	flex: 0 0 auto;
}
.products-featured .product .product-info .product-links .add-to-basket a{
	float: right;
	width: 40px;
	height: 40px;
	padding: 0;
}
.products-featured .product .product-info .product-links .add-to-basket a::after{
	content: "\ea1d";
	display: block;
	font-family: 'icons8_win10';
	font-size: 30px;
	text-align: center;
	cursor: pointer;
	position: absolute;
	top: 0;
	right: 0;
	margin-top: 0;
	width: 40px;
	height: 40px;
}
.products-featured .product .product-info .product-links .goto-sheet{
	/*width: 100%;*/
	text-align: center;
}

@media (min-width: 768px) { 
   .products-featured .product .product-info .product-links .select-quantity{
      display: contents;
  }  
} 

@media (max-width: 768px) {    
  .products-featured .grid-item{/*articoli*/
	width: calc(50% - 20px) !important;
  }
}
@media(max-width:400px){
	.products-featured .grid-item{/*articoli*/
		width: calc(100% - 20px) !important;	
		display: flex;
		flex-direction: column;
		align-items: center;
	}
}
@media (max-width: 768px) { 
	.items-grid-layout{	/*elenco articoli*/
		width: 100% !important;
		flex-direction: column;
		align-items: center;
	}	
}

@media (min-width: 992px) {
  .products-featured .product .product-info .product-links {
    font-size: 14px;
    line-height: 27px;
  }
}

/*---- GADGET: Elenco articoli alternativi/correlati ----*/
.products-alter .product {
	position: relative;
	display: flex;
	justify-content: left;
	flex-flow: row nowrap;
	padding: 0;
	border: 0;
}
.products-alter .product .image {
	display: block;
	width: 150px !important;
	height: auto;
	margin: 0;
}
.products-alter .product .image img {
	width: 100% !important;
	min-height: 200px;
	object-fit: cover;
}
.products-alter .product .badge-left {
	position: absolute;
	display: inline-block;
	top: 0;
	left: 0;
}
.products-alter .product .badge-right {
	position: absolute;
	display: inline-block;
	top: 0;
	right: 0;
}
.products-alter .product .promo-sale {
	display: block;
	margin-bottom: 5px;
}
.products-alter .product .promo-sale::after {
	content: 'Promo';
	display: block;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 0 5px;
  line-height: 32px;
  background-color: var(--light-bg-color);
  color: var(--light-txt-color);
}
.products-alter .product .info {
	display: flex;
	flex-flow: column nowrap;
	justify-content: space-between;
	width: auto;
	height: auto;
	padding: 0;
	background: transparent;
	overflow: hidden;
	flex: 0 1 auto;
}
.products-alter .product .info .discount.actions {
	padding: 0 10px 5px 10px;
	height: 32px;
}
.products-alter .product .info .discount.actions .discount {
	position: static;
	float: left;
	width: auto;
	height: auto;
	border-radius: 0;
	line-height: 28px;
	padding: 0 8px;
}
.products-alter .product .info .name {
	padding: 10px 10px 0;
	flex: 1 0 auto;
}
.products-alter .product .info .name h3 {
	display: inline;
	font-size: 18px;
	line-height: 1;
}
.products-alter .product .info .prices {
	font-size: 16px;
	justify-content: left;
	padding-bottom: 10px;
	flex: 1 0 auto;
}
.products-alter .product .info .prices .price {
	font-size: 20px;
}
.products-alter .product .info .prices .price-compare,
.products-alter .product .info .prices .price {
	padding: 0 10px;
}
.products-alter .product .info .links .goto-sheet {
	width: 100%;
	text-align: left;
	padding: 0 10px;
}
.products-alter .product .info .links .goto-sheet a {
	display: inline-block;
}
  
/*---- GADGET: Login ----*/
.new-password .title span,
.login .title span {
  color: #4F4F4F;
  text-transform: uppercase;
  display: block;
  text-align: center;
  padding: 20px;
  margin-top: 5px;
  margin-bottom: 25px;
  position: relative;
  font-size: 35px;
  line-height: 44px;
}
.new-password .title span::after,
.login .title span::after {
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -35px;
  bottom: 0;
  width: 70px;
  height: 1px;
  border-bottom: 3px solid var(--primary-color);
}
.login .login-column {
  display: flex;
  flex-flow: column nowrap;
}
.login .login-column .form-wrapper {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  flex: 1 0 auto;
}
.new-password .form-group,
.login .login-column .form-wrapper .form-group {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.login input:not([type="checkbox"]) {
  height: 60px;
}
.login .login-column .form-wrapper .login-submit-group {
  justify-content: space-between;
}
.new-password .captcha,
.login .captcha {
  margin-right: 10px;
}
.new-password .captcha img,
.login .captcha img {
  height: 60px;
}
.new-password .form-group {
  display: flex !important;
  flex-flow: row nowrap;
  justify-content: space-between;
}
.new-password .form-group .textbox-container {
  flex: 1;
}
.new-password .pwdmeter {
  width: 170px !important;
  height: 54px !important;
}
.new-password .pwdmeter .img_bg_gradient_ctrl,
.new-password .pwdmeter .label {
  top: 5px !important;
  left: 10px !important;
  right: 0 !important;
}
.new-password .pwdmeter .box {
  top: 5px !important;
  right: 0 !important;
}
.new-password .pwdmeter .label {
  font-size: 16px !important;
  border: 0 !important;
  top: auto !important;
  left: 10px !important;
  bottom: 5px;
  line-height: normal !important;
  text-align: center !important;
}

/********************** SCHEDA ARTICOLO********************/

.product-section .product-info .product-variants-wrapper{
  background-color:#ffffff;
  margin-top:10px;
}
.product-section .product-info .product-variants-wrapper.delimiter{
  border-top: 1px solid #808080;
  border-bottom: 1px solid #808080;
}
.product-section .product-info .product-variants-wrapper .product-add{
  margin:0px;
}
.product-section .product-info .product-title-wrapper{
  padding:0px;
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.product-section .product-info .product-title-wrapper .product-badge-right {
    right: 0px;
    display: flex;
}

.product-section .product-info .product-title-wrapper h1{
  color: #000;
  font-size: 32px;
  font-weight: 700;	
  display:inline-block;
  padding: 0px 20px 20px 0px;
  line-height:initial;
}
.product-section .product-info .product-title-wrapper h1::after{
  content:none;
}
.product-section .product-info .product-description{
  color: #000;
  font-size: 18px;
  margin-bottom:20px;
}
.product-section .product-info .number-input,
.product-section .product-info .number-input input{
  border:none;	
  box-shadow:none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float:left;	
}
.product-section .product-info .product-unimis{
  border:none;	
  box-shadow:none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float:left;		
}
.product-section .product-info .product-availability{
  border:none;	
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-end;
}
.product-section .product-info .product-availability div{
  padding:10px 0px 10px 5px;
}
.product-section .product-info .product-availability .name{
  color: #000;
  font-size: 16px;
  padding: 0px 2px;
}
.product-section .product-info .product-availability .val{
  color: #000;
  font-size: 16px;
  padding: 0px 2px;
  font-weight: 700;
}
.product-section .product-info .product-variants-wrapper .product-add .discount-perc{
  color: var(--light-color);
  font-size: 20px;
  font-weight: 900;
}
.product-section .product-info  .product-variants-wrapper .product-add .priceTimer{
  box-sizing: border-box;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 500;
  padding: 5px;
}
.product-section .product-info .product-variants-wrapper .product-add .product-price.prev-price{
  color: #4F4F4F;
  font-size: 25px;
}
.product-section .product-info .product-variants-wrapper .product-add .product-price.end-price{
  color: var(--dark-color);
  font-weight:700;
}
.product-section .product-info .product-variants-wrapper .product-add .discount-value{
  color: #4F4F4F;
  font-size: 18px;
}
.product-section .product-info .product-variants-wrapper .product-add .button {
  background-color: var(--btn-primary-bg-color);
  color:var(--btn-primary-txt-color);
 /* box-shadow: 0 2px 20px 0 rgb(0 0 0 / 50%); */
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.9px;
}
.product-section .product-info .product-variants-wrapper .product-add .button:after {    
  margin-left:10px;
}

/*LISTA PROMOZIONI APPLICABILI*/
.product-section .product-info .promoList{
  background-color:#F2F2F2;
  display: flex;
  flex-direction: column;
}
.product-section .product-info .promoList .iconPromo{
    position: relative;
    display: block;
}
.product-section .product-info .promoList .iconPromo:after {
    content: 'Promo';
    position: absolute;
    top: 0px;
    left: 0px;
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 5px;
    line-height: 32px;
    background-color: var(--light-bg-color);
    color: var(--light-txt-color);
}
.product-section .product-info .promoList .promoListItem:nth-child(2){
	margin-top:50px;
}
.product-section .product-info .promoList .promoListItem{
  display: flex;
  flex-direction: column;
  margin:10px;
}
.product-section .product-info .promoList .promoListItem .titlePromo{
  font-size: 18px;
  color: var(--primary-color);
  font-weight: bold;
}
.product-section .product-info .promoList .promoListItem .descriPromo{
  font-size: 15px;    
  font-style: italic;
}

/* VARIANTI*/
.product-section .product-info .product-variants-wrapper.background {  
  padding: 0px;
  margin-bottom:20px;
}
.product-section .product-info .labelVariant {
  color: var(--primary-color);
  font-size: 20px;
  display: flex;
  margin: 20px 0px 5px 0px;
  align-items: center;  
}
.product-section .product-info .itemVariant {
  display: flex;
  flex-direction: row;
  border-top:1px solid #CCC;    
  background-color: #f2f2f2;
  padding: 25px 0px 15px 0px;
}
.product-section .product-info .itemVariant.activated:before {
    content: "\ef8b";
    color: green;
    position: absolute;
    width: 20px;
    padding: 7px;
    font-family: 'icons8_win10';
    display: flex;
}

.product-section .product-info .itemVariant:last-child {
  border-bottom: 1px solid #CCC;
}
.product-section .product-info .itemVariant .name{
  color: var(--primary-color);
  font-size: 16px;
  display: flex;
  margin-bottom: 10px;
  align-items: center;
  width: 250px;    
  margin-left:30px;
}
.product-section .product-info .itemVariant .combobox{
  background-color: #E0E0E0;
  color: #333;
  font-size: 14px;
  display: flex;
  align-items: center;
  width:100%;
  margin-right:20px;
}
/* TAB */
.product-detail .nav-tabs{
  border: 0;
  background: #F2F2F2;
  text-transform: uppercase;
  height: 57px;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 57px;
}
@media (max-width: 600px) {
.product-detail .nav-tabs{
    display: contents !important;
  }
}
.product-detail .nav-tabs .nav-item .nav-link{
  background: #F2F2F2;
  color: #333;
  padding:0px 45px;
}
.product-detail .nav-tabs .nav-item .nav-link.active{
  background: var(--btn-primary-bg-color);
  color:var(--btn-primary-txt-color);
  padding:0px 45px;
}
.product-detail .tab-content .tab-pane {
  line-height: 22px;
  padding: 45px 0;
  color: #1D2127;    
  font-size: 18px;
}
/*Layer articolio aggiunto al carrello*/
.spModalLayer .resource_container_wrapper {
  /*height: auto !important;*/
  display: inline-block;
}
.spModalLayer .spModalButton.spModalLayer_closebtn{
	display:none;
}
.spModalLayer .resource_container {
  /*height: auto !important;*/
}
.spModalLayer .wrapper_box {
  padding: 20px;  
}
.spModalLayer .wrapper_box div{
  padding-bottom:10px;
}
.spModalLayer .wrapper_box div a{
  font-size:20px;  
}
.spModalLayer .wrapper_box .info{
  font-size: 20px;
}
.spModalLayer .wrapper_box .p_image img{
  width: 80px;
  height: 80px;
}
.spModalLayer .wrapper_box .p_name{
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
}
/******************FINE SCHEDA ARTICOLO********************/

/******************ELENCO ARTICOLI KIT********************/
.compKit{
  padding:0px 20px;  
}
.compKit .titleCompKit div{
	display: flex;
	line-height: 50px;
	overflow: hidden;
	margin-bottom: 20px;
}
.compKit .titleCompKit div {
	padding-right: 20px;
	font-size: 24px;
	font-weight: 500;
	color: #333333;
	flex: 0 0 auto;
}
.compKit .titleCompKit div::after {
	content: '';
	display: inline-block;
	height: 28px;
	border-bottom: 2px solid var(--primary-color);
	flex: 100 0 auto;
	margin-left: 20px;
}
.compKitCont .repeater_ele{
  background-color:#f2f2f2;  
  margin:10px
}
.compKitCont .repeater_ele span[id*=_lbAvailable1]{
  width:100%;  
  margin:10px 0px 0px 0px!important;  
  text-align:center;
  clear:both;
}
.compKitCont .repeater_ele span[id*=_lbAvailable2]{
  width:100%;
  margin:0px 0px 10px 0px!important;
  text-align:center;
  clear:both;
  height: 25px;
}
.compKitCont .repeater_ele .boxHeader{
  margin: 0px !important;
}
.compKitCont .repeater_ele div[id*=_imgArticle]{
  margin: 25px auto;
  float: none !important;
}
/******************FINE ELENCO ARTICOLI KIT********************/


/***************CARRELLO RESPONSIVE VERTICALE **********/
.basket img {
  max-width: 100%;
}
/*reset portlet control*/
.basket.resp {
  overflow: auto !important;
  min-height: 0 !important;
  min-width: 100px;
}
.basket.resp select {
  height: auto !important;
  margin: 0px !important;
}
.basket.resp .labelBig {
  padding: 5px !important;
  font-size: 14px;
}
/* BASKET - MODIFICA RIGA */
.basketRow {
	background-color: #FFFFFF;
	font-size:13px;
}
.basketRow .label{
	color:var(--primary-color);
	height: 30px !important;
    line-height: 30px !important;
	margin-left:2px !important;
}
.basketRow div[id*=BoxDataRicEva] .label, 
.basketRow div[id*=BoxDataLimEva] .label{
    width: 100%;
    height: auto !important;
    line-height: 16px !important;
    text-align: left;
    margin: 10px 0px 0px 20px !important;
}
.basketRow div[id*=BoxDataRicEva] .textbox-container, 
.basketRow div[id*=BoxDataLimEva] .textbox-container{
	margin: 0px 0px 5px 20px;	
}
.basketRow textarea{
	padding: 2px 4px;
    margin-top: 10px;
    border: 1px solid #ccc;
 }
.basketRow input[type=text]{
	padding:3px;
	height: 30px !important;
    line-height: 30px !important;	
    background-color: #ffffff;
 }
 .basketRow input[type=date]{
	padding:3px;	
	background-color: #ffffff;
    border: 1px solid #ccc;
    margin: 0px !important;
    width: 160px !important;
 }
.basketRow .btnConferma {	
	float: right !important;
    float: right !important;
    margin-right: 10px;
    width: auto !important;
    height: auto !important;	
}
/*Nessun articolo nel carrello*/
.basket.resp .boxGridBasket .labelBold {
  text-align: center !important;
  padding: 20px;
  margin-bottom: 30px !important;
  background: #E0E0E0;
  font-size: 20px;
  line-height: 30px;
  font-weight:500;
}
/*box footer*/
.basket.resp .boxInfo {
  min-height: auto !important;
  height: auto !important;
  width: auto !important;
}
.basket.resp .boxTotaleIva {
  float: right !important;
  min-height: 90px !important;
  height: auto !important;
}
.basket.resp .boxTotaleIva .labelTotal, 
.basket.resp .boxTotaleIva .labelFooter {
  font-size: 18px;
  width: 210px !important;
  margin-left: 0px !important;
  white-space: nowrap;
}
.basket.resp .boxTotaleIva .total, 
.basket.resp .boxTotaleIva .labelFooter.val {
  font-size: 18px;
  width: 150px !important;
  margin-left: 15px !important;
}
.basket.resp .boxTotaleIva .labelTotal,
.basket.resp .boxTotaleIva .total{
  font-size: 20px;
  font-weight: 600;    
}
.basket.resp .boxTotalFooter {
  text-align: right;
  padding: 20px 0px 0px 0px;
  margin-bottom: 20px;
  border-bottom: 2px solid #ccc;
}
.basket.resp .boxTotalFooter .textbox-container {
  float:left;
  height: auto !important;
  width: auto;    
  margin: 15px;
}
.basket.resp .boxTotalFooter .textbox-container .coupon{
  padding: 10px;
  width: auto;
  font-size: 20px;
}
.basket.resp .boxTotalFooter .boxTotale {
  float: right !important;	
  width: auto !important;
}
.basket.resp .boxTotalFooter .boxTotale td{
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.basket.resp .boxTotalFooter .boxTotale .totalFooter.lbl{
  font-size: 30px;
  font-weight: 600;    
  padding: 10px;
}
.basket.resp .boxTotalFooter .boxTotale .totalFooter.val{
  font-size: 30px;
  font-weight: 800;
  padding: 10px;
  text-transform: uppercase;
}

/*label*/
.basket.resp .labelBold {
  color: #333333;
  font-size: 18px;
  font-weight: bold;
  margin: 0px !important;
  width: 200px !important;
}
.basket.resp .labelBig {
  margin: 0px !important;
  font-size: 20px;
  width: 200px !important;
}
.basket.resp .labelFooter {
  font-size:16px;
  color: #6c6c6c;	
  margin: 2px 0px !important;
}
.basket.resp .labelFooter.cli {
  font-size: 20px;
  font-weight: 700;
}

/* bottoni reset*/
.basket.resp .btn {
  width: auto !important;
  height: auto !important;
}
.basket.resp .btn.btn-primary {
  float: right !important;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.9px;
  padding:20px;
 margin: 10px 5px !important;
}
.basket.resp .btn-secondary{
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: #333333;
  background: white;
  border: none;
  text-transform: uppercase;
  float:left !important;
  margin: 10px 5px !important;
  box-shadow: none;
}
.basket.resp .btn-secondary:hover, 
.basket.resp .btn-secondary:active, 
.basket.resp .btn-secondary:focus {
  color: #190055;
  background: white;
  border: none;
  -webkit-box-shadow: 1px 1px 8px 0px rgb(0 0 0 / 50%);
  box-shadow: 1px 1px 8px 0px rgb(0 0 0 / 50%);
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
}
.basket.resp .next2{
  float:right !important;
  margin:0px 0px 0px 15px !important;
}

/*Elenco articoli*/
.basket.resp .basketList {
  font-size: 24px;
}
.basket.resp .boxGridBasketRiep .basketList{ 
  font-size: 18px;
}
/*titoli griglia*/
.basket.resp .basketList .grid_row_title .grid_cell_title:nth-child(2) {
  text-align: left !important;
}
.basket.resp .basketList .grid_cell_title {
  text-align: right !important;
  padding: 10px;
}
.basket.resp .basketList .grid_cell_title .grid_cell_title_table{
  display:inline-block;
}

/*elenco*/
.basket.resp .basketList .grid_row,
.basket.resp .basketList .grid_rowodd{
  background: #F2F2F2;
  height: 150px !important;
  position: initial;
  border-bottom: 10px solid #fff;
}
.basket.resp .basketList .grid_row .grid_cell,
.basket.resp .basketList .grid_rowodd .grid_cell{
  padding: 0px 10px;
}
.basket.resp .basketList .grid_row .backImg,
.basket.resp .basketList .grid_rowodd .backImg{
  width: 200px;
  height: 200px;
  padding: 20px !important;
}
.basket.resp .boxGridBasketRiep .basketList .grid_row .backImg, 
.basket.resp .boxGridBasketRiep .basketList .grid_rowodd .backImg{
  width: 100px;
  height: 100px;
  padding: 10px !important;
}
.basket.resp .basketList .grid_row img,
.basket.resp .basketList .grid_rowodd img{
  width: 150px;
  height: auto;
}
.basket.resp .basketList .grid_row a,
.basket.resp .basketList .grid_rowodd a {
  font-size: 24px;
  line-height: 36px;
  text-transform: uppercase;
  font-weight: 600 !important;
}
.basket.resp .basketList .grid_row a p,
.basket.resp .basketList .grid_rowodd a p{
  font-size: 16px;
  line-height: 26px;
}
.basket.resp .boxGridBasketRiep .basketList .grid_row a,
.basket.resp .boxGridBasketRiep .basketList .grid_rowodd a {
  font-size: 20px;
  line-height: 26px;    
}	
.basket.resp .basketRiep .basketList .grid_row a,
.basket.resp .basketRiep .basketList .grid_rowodd a {
  font-size: 20px;
  line-height: 26px;    
}
/*colonna modifica elimina*/
.basket.resp .basketList .grid_row .grid_cell:nth-child(7) div,
.basket.resp .basketList .grid_rowodd .grid_cell:nth-child(7) div{
  display: flex;
  flex-direction: row;
}
.basketList .btnBasketRefresh{
  display:inline-block;
  background: url(../img/modify-icon.png) no-repeat;background-size: 100% 100%;
  width: 30px;
  height: 30px;	
  margin: 0px 3px;
}
.basketList .btnBasketDelete{
  display:inline-block;
  background: url(../img/trash-icon.png) no-repeat;background-size: 100% 100%;
  width: 30px;
  height: 30px;	
  margin: 0px 3px;
}

/*icone promo*/
.basketList .iconPromoApp{
  width:30px;
  height:30px;
  background: url(../img/promo-icon.png) no-repeat;
  background-size: 100% 100%;
} 
.basketList .iconPromoNoApp{
  width:30px;
  height:30px;
  background: url(../img/promo-icon.png) no-repeat;
  background-size: 100% 100%;
  filter: grayscale(100%);
} 
.basketList .iconPromoAll{
  width:30px;
  height:30px;
  background: url(../img/promo-icon.png) no-repeat;
  background-size: 100% 100%;
  filter: grayscale(50%);
}

/*Checkout - Step:Carrello,Spedizione,...*/
.basket.resp div[id$=_page_]{
  border-bottom:2px solid #808080;
}
.basket.resp .boxGridBasket {
  left: 0px !important;
  right: 0px !important;
  height: auto !important;
  margin: 5px 0px 5px 0px !important;
  min-height: 50px !important;
  float: left !important;
  width: 100% !important;
}
.basket.resp .step{	
  height: 44px;
  width: 100%;
  font-weight: 600;
  cursor: default;
  color: #4F4F4F;
  text-transform: uppercase;
  display: block;
  padding: 20px;
  margin-top: 5px;
  margin-bottom: 25px;
  position: relative !important;
  font-size: 35px;
  line-height: 23px;
  text-align: center !important;
}
.basket.resp .step:after {
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -35px;
  bottom: 0;
  width: 70px;
  height: 1px;
  border-bottom: 3px solid #190055;
}
.basket.resp .step_link {
  height: 70px;
  width: 100%;
  float: right;
  background-color: #F2F2F2;
  padding: 25px;
  margin: 10px 0px;
  font-size: 22px;
  font-weight: 600;
  color: #808080 !important;
  text-decoration: none;
  cursor: pointer;
  text-transform: uppercase;
}
.basket.resp .step_actual {
  height: 70px;
  width: 100%;
  float: right;
  background-color: #F2F2F2;
  padding: 25px;
  margin: 10px 0px;
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-color) !important;
  text-decoration: none;
  cursor: pointer;
  text-transform: uppercase;
}

/*elenco sedi elenco pagamenti */
.basket.resp .officeList, .basket.resp .paymentList{
  font-size: 12px;
  width: 100% !important;
  margin: 0px !important;
} 
.basket.resp .paymentList .grid_img_recMark,
.basket.resp .officeList  .grid_img_recMark,
.basket.resp .gridConsegna .grid_img_recMark{
  height: 41px;
  width: 30px;
  line-height: 41px;
}
.basket.resp .paymentList  a.iconFont,
.basket.resp .officeList  a.iconFont,
.basket.resp .gridConsegna  a.iconFont{
  color: rgba(0,0,0,0.7);
  width: 45px;
  height:40px;
  line-height:40px;
  text-align: center;
  display: inline-block;
}
.basket.resp .paymentList .grid_card_container,
.basket.resp .officeList .grid_card_container,
.basket.resp .gridConsegna .grid_card_container{
  margin-right:20px;
  margin-bottom: 10px;
}
.basket.resp .paymentList  a.iconFont.grid_img_recMark_sel::after,
.basket.resp .officeList  a.iconFont.grid_img_recMark_sel::after,
.basket.resp .gridConsegna  a.iconFont.grid_img_recMark_sel::after {
  content: "\f688";
  font-family: icons8_win10;
  font-weight: normal;
  font-size: 20px;
  color: var(--primary-color);
} 
.basket.resp .paymentList .grid_cell,
.basket.resp .officeList .grid_cell,
.basket.resp .gridConsegna .grid_cell{
  padding: 5px;
  min-height:25px;
  border-bottom: 1px solid #dcdcdc;
  font-size:20px;
  vertical-align:middle;
}
.basket.resp .paymentList  .no-print,
.basket.resp .officeList  .no-print,
.basket.resp .gridConsegna  .no-print {
  vertical-align:top;
} 
.basket.resp .officeList .grid_cell{
  padding: 10px 0px;
  font-size: 20px;
}
.basket.resp .officeList .grid_record_mark_sel, .basket.resp .officeList .grid_record_mark {
  padding-top: 0px;
}

/*Riepilogo*/
.basket.resp div[id$=_portletRiep] {
  margin: 0px !important;
  height: auto !important;
  width: 100% !important;
}
.basket.resp .boxGridBasketRiep {
  margin: 0px !important;
  min-height: 50px !important;
  float: left !important;
  padding: 10px 10px 0px 20px !important;
  width: 100% !important;
}
.basket.resp .basketRiep .boxCollapse {
  width: 100% !important;
}
.basket.resp .basketRiep .boxTitleRiep {    
  height: 50px;
  border: none !important;
  background-color: #f2f2f2;
  padding-top: 5px;
}
.basket.resp .basketRiep .boxTitleRiep .labelBold{
  width: auto !important;
  height: 50px;
  line-height: 50px;
  margin: 0px 0px 0px 5px !important;
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
}
.basket.resp .basketRiep .labelBig {
  width: 50% !important;
  font-size: 19px;
  padding: 5px 0px;
}
.basket.resp .basketRiep .labelBig.maxwidth {
  margin: 3px 10px !important;
  width: 100% !important;
}
.basket.resp .basketRiep .labelBig.maxwidth i,
.basket.resp .basketRiep .labelBig.maxwidth b{
	display:block;
}

.basket.resp .basketRiep .totalFooter,
.basket.resp .basketRiep .basketTitle {
  font-weight: 700;
  font-size: 25px;
  width: 50% !important;
  margin: 10px 0px !important;
}
.basket.resp .basketRiep .labelBig.promovalue {
  color: red;
  font-size: 20px;
  width: 50% !important;
  font-weight: 500;
}

.basket.resp .buttonStampa,
.basket.resp .buttonModifica{
  width: auto !important;
  margin: 0px !important;
  height: 45px;
  float: right !important;
  padding: 0px 5px;
  border: none !important;
}
.basket.resp .basketRiep .buttonStampa a,
.basket.resp .basketRiep .buttonModifica a {
  height: 45px;
  line-height: 45px;
  font-size: 12px;
  font-weight: normal;
  color: #fff;
  text-decoration: none;
}
.basket.resp .basketRiep .buttonStampa a:before,
.basket.resp .basketRiep .buttonModifica a:before {
  font-family: icons8_win10;
  color: #ffffff;
  float: left;
  margin: 0 auto;
  padding: 0px 5px;
  font-size: 25px;
}
.basket.resp .basketRiep .buttonStampa a:before{
  /*content: "\f3fa";	*/
  content: url(../img/print-icon.png);
}
.basket.resp .basketRiep .buttonModifica a:before {
  /**content: "\f0ba";    */
  content: url(../img/modify-icon.png);
}

/* Layer */
.spModalLayer .basket.resp .lblTitleLayer {
  padding: 10px 20px;
  background-color: #f2f2f2 !important;
  border-bottom: 1px solid #dddddd;
  font-size: 20px;
  color: var(--primary-color);	
}
.spModalLayer .basket.resp .labelBig {
  width: 50% !important;
  margin: 0px !important;
  padding: 3px 5px !important;
  font-size: 14px;
  line-height: 15px;
  display: inline-block;
  float: left;
  text-align: right;
}
/***********************************************************************/
/********** BOX PROMOZIONI APPLICATE/NON APPLICATE *********************/
/***********************************************************************/
.basket-prom {
  height: auto !important;
  padding: 0px 0px 10px 0px;
}
.basket-prom .title{
  padding: 10px 20px;
  background-color: #f2f2f2 !important;
  border-bottom: 1px solid #dddddd;
  font-size: 20px;
  color: var(--primary-color);	
}
.basket-prom .grid{
  border-collapse: collapse;
}
.basket-prom .grid .grid-row{	
  display: table-row;
  border-bottom: 1px solid #EEE;
}
.basket-prom .grid .grid-row div{	
  display: table-cell;
  vertical-align:middle;
  padding: 10px 10px;
}
.basket-prom .prom-button{
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  text-transform: uppercase;
  float: left !important;
  margin: 20px 20px !important;
  padding: 10px 20px;
}
.basket-prom .prom-button:hover{
  color: #190055;
  -webkit-box-shadow: 1px 1px 8px 0px rgb(0 0 0 / 50%);
  box-shadow: 1px 1px 8px 0px rgb(0 0 0 / 50%);
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
}

/*layer nuova sede*/
.basket.address .basketTitle {
  padding: 10px 20px;
  background-color: #f2f2f2 !important;
  border-bottom: 1px solid #dddddd;
  font-size: 20px;
  color: var(--primary-color);
  left: 0px;
  width: 100%;
  top: 0px !important;
}
.basket.address .buttonBasket {
  height: auto;
  width: auto;
}
.basket.address .labelBold,
.basket.address .textbox,
.basket.address select{
	height:30px;
	line-height:30px;
	font-size:14px;
	font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif !important;	
    margin: 0px;
}
.basket.address .textbox,
.basket.address select{
	padding: 0px 5px;
    border: 1px solid #BDBDBD;
}
.basket.address .label {
  font-size: 15px;
  width: auto !important;
  left: 50px;
}
.basket.address .labelbig {
  font-size: 14px;
  top: 60px !important;
}
.basket.address .checkbox {
  margin: 0px 0 0;
  width: 20px;
  height: 25px;
  top: 60px !important;
}
.basket.address span[id*=_autosuggestCity_wrp] {
  height: 30px !important;
}
.basket.address textarea[id*=autosuggestCity] {
  height: 30px !important;
  padding: 0px 10px;
  font-size: 14px;
  border: 1px solid #BDBDBD;
  line-height: 30px;
}
.basket.address .city_sw {
  background-color: #FFFFFF;
  padding: 10px !important;
  font-size: 14px;
  right: 10px;
  border: 1px solid #BDBDBD;
}
.basket.address .city_sw .over {
	color:var(--highlight-bg-color);
	font-weight:500;
}
.basket.address .city_sw li {
  width: 100% !important;
}
.basket.resp .boxGridBasket .basketList.small,
.basket.resp .boxGridBasketRiep .basketList.small {
	display:none !important;
}
.basket.resp .boxGridBasket .basketList,
.basket.resp .boxGridBasketRiep .basketList {
	display:block !important;
}
@media(max-width:992px){
	.basket.resp .boxGridBasket .basketList,
	.basket.resp .boxGridBasketRiep .basketList {
		display:none !important;
	}
	.basket.resp .boxGridBasket .basketList.small,
	.basket.resp .boxGridBasketRiep .basketList.small {
		display:block !important;
	}
	.basket.resp .basketList .grid_row, .basket.resp .basketList .grid_rowodd{
		height: auto !important;
		border-bottom: 0px;
		background-color:#ffffff;
	}
	.basket.resp .boxTotalFooter .boxTotale .totalFooter.lbl{
			display:none !important;
	}
	.basket.resp .basketList .grid_row .grid_cell br, .basket.resp .basketList .grid_rowodd .grid_cell  br{
		display:none;
	}
	.basket.resp .basketList .grid_row .grid_cell a, .basket.resp .basketList .grid_rowodd .grid_cell a{
		float:left;
	}
	.basket.resp .basketList .grid_row .grid_cell, .basket.resp .basketList .grid_rowodd .grid_cell {
		vertical-align: top;
		padding: 10px 10px 0px 10px;
	}
	.basket.resp .basketList .grid_row .grid_cell input[type=text], .basket.resp .basketList .grid_rowodd .grid_cell input[type=text]{ 
		background-color: #BDBDBD;
		border: none;
		padding: 5px;
		text-align: center !important;
	}
	.basket.resp .basketList .grid_row .grid_cell textarea, .basket.resp .basketList .grid_rowodd .grid_cell textarea{ 
	    background-color: #f2f2f2;
		border: none;
		padding: 15px 10px;
		font-size: 16px;
		resize:none;
	}
	.basket.resp .basketList .grid_row .grid_cell div, .basket.resp .basketList .grid_rowodd .grid_cell div{
		padding: 5px 0px;
	}
	.basket.resp .basketList .grid_row .backImg, .basket.resp .basketList .grid_rowodd .backImg {
		width: 100px !important;
		padding: 0px !important;
	}
	.basket.resp .basketList .grid_row .backImg td, .basket.resp .basketList .grid_rowodd .backImg td{
		vertical-align: top !important;		
	}	
	.basket.resp .basketList .grid_row .grid_cell .grid_row_sep, .basket.resp .basketList .grid_rowodd .grid_cell .grid_row_sep{
	    border-bottom: 1px solid #BDBDBD;
		padding:0px;
	}
}
@media (max-width:1200px) { 
	.boxGridBasketRiep.col-md-8 {
		max-width:100% !important;
	}	
	.boxGridBasketRiep.col-md-4{
		max-width:100% !important;
	}
	.basket.resp .basketList .grid_row .backImg, .basket.resp .basketList .grid_rowodd .backImg{
		width:120px;
	}
	.basket.resp .basketList .grid_row img, .basket.resp .basketList .grid_rowodd img{
		width:100px;
	}
	.basket.resp .basketList .grid_row td:nth-child(5), .basket.resp .basketList .grid_rowodd td:nth-child(5) {
		display: none;
	}
	.basket.resp .basketList.resp .grid_row td:nth-child(5), .basket.resp .basketList.resp .grid_rowodd td:nth-child(5) {
		display: table-cell;
	}
	.basket.resp .boxTotalFooter .boxTotale{
		margin-left:0px !important;
	}	
}

@media (max-width: 768px) {
	.basket.resp .boxTotalFooter .textbox-container .coupon,
	.basket.resp .boxTotalFooter .textbox-container textarea{		
		border: 1px solid #ccc;
	}
	.basket.resp .boxInfo {
		width: 100% !important;
	}
	.basket.resp .labelBig, .basket.resp .labelBold {
		width: 33% !important;
		margin-bottom: 10px !important;
	}
	.basket.resp .basketList,
	.basket.resp .basketList .grid_row a, 
	.basket.resp .basketList .grid_rowodd a{
		font-size: 20px;    
	}
	
	.basket.resp .btn.btn-primary {
		min-width: 100%;
	}
	.basket.resp .buttonBasketChoice,
	.basket.resp .buttonBasketChoice2,
	.basket.resp .buttonBasketChoice3 {
		min-width: calc(100% - 20px);
	}
	.basket.resp .buttonBasket.next1,	
	.basket.resp .buttonBasket.next2,
	.basket.resp .buttonBasket.next3,
	.basket.resp .buttonBasket.next3_a{
		position: relative !important;
		min-width: calc(100% - 10px);
		margin: 10px 15px 10px 15px !important;
	}
	.basket.resp .buttonBasket.salva,
	.basket.resp .buttonBasket.offerta,
	.basket.resp .buttonBasket.annulla,
	.basket.resp .buttonBasket.shopping{	
		position: relative !important;
		min-width: calc(100% - 10px);
		margin-top: 20px !important;
	}
}
/******************* FINE CARRELLO**************************/



/************************ CONTENUTO ************************/
.content div[id$=_imgContent] {
  width: auto;
  height: auto;
}
/************************FINE CONTENTUTO *****************/


/********************** TOOLBAR UTENTE ********************/
.user_toolbar .header-link-wrapper:hover {
  text-decoration: underline;
  color: var(--primary-color);
}
.user_toolbar .user-info {
  font-size: 14px;
  line-height: 18px;
}
.user_toolbar .user-info .icon-edit {
  content: '';
  margin-left: 5px;
}
.user_toolbar .user-info .icon-edit:after {
  position: relative;
  top: 2px;
  display: inline-block;
  width: 18px;
  font-size: 18px !important;
  font-style: normal;
  content: '\f0ba';
  line-height: 18px;
  font-family: 'icons8_win10';
}
.box-usertoolbar {
  min-height: 0 !important;
  z-index: 3 !important;
  height:100%;
}
.box-usertoolbar .gadget {
    height: 100%;
}
.box-usertoolbar .dropdown-menu {
  top: 100% !important;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  border-radius: 0px;
  padding: 0px;
  padding: 10px 0px 0px;
}
.dropdown-menu h1 {    
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 1.2rem;
  white-space: nowrap;
  font-weight: 700;
}
.dropdown-menu .menuview_content {
  margin-bottom: 5px;
}
.dropdown-menu .menuview_content li a{
  font-size: 16px;    
  color: #333333;
  font-weight: 400;
  white-space:nowrap;
  padding: 0.25rem 1.5rem;
  display: block;
}
.dropdown-menu  .logout-link {
  text-transform: uppercase;
  font-weight: 600;
  color: #333333;
  padding: 10px;
  border-top: 1px solid #e9ecef;
}
.dropdown-menu .logout-link:active {
  background-color: #f8f9fa;
}
/********************** FINE TOOLBAR UTENTE ********************/



/****************************  CAMBIO CLIENTE ***********************/
.selectionCustomer,
.selectionOffice{
  height: 480px !important;
}
.selectionCustomer .grid,
.selectionOffice .grid {
    width: calc(100% - 30px);
    margin: 15px;
}
.selectionCustomer .titleSelection,
.selectionOffice .titleSelection{
  top: 0px !important;	
  width: 100%;
  margin: 0px !important;
  left: 0px;
  padding: 10px 20px;
  background-color: #f2f2f2 !important;
  border-bottom: 1px solid #dddddd;
  font-size: 20px;
  color: var(--primary-color); 
}
.selectionCustomer .btn-primary,
.selectionOffice .btn-primary{
  /*text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;	
  padding: 10px 10px;*/
  width:auto;
  height:auto;
}
/************************FINE  CAMBIO CLIENTE ***********************/



/****************************** AREA PERSONALE **********************/
.profile{
  font-size:16px;
  min-width:200px !important;
}
.profile .container_resource{
  padding-left: 20px;
  height: auto !important;
}
.profile .labelBold {
  height:37px;
  line-height:37px;
  font-size: 15px;
  white-space: nowrap;
  width: calc(50% - 70px) !important;
  left: 0 !important;
  padding-right: 5px;
}
.profile .labelBold h3{
  margin: 0px;
  padding: 20px;
  position:relative;
  text-align:center;
}
.profile .labelBold h3:after {
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -35px;
  bottom: 0;
  width: 70px;
  height: 1px;
  border-bottom: 3px solid var(--primary-color);
}
.profile .documentList .labelBold{
  width:100% !important;
  text-align: left !important;
}
.profile span[id$=_lblHeader],
.profile .box{
  width: 100% !important;
  text-align:center;	
}
.profile .box .labelBold{
  width: 100% !important;
  text-align:center !important;	
}
.profile span[id*=_wrp], .profile span[id*=_wrp] input {
  height: 37px !important;
  line-height: 37px;	
}
.profile span[id*=_wrp] input {
  padding: 0px 8px;
}
.profile input[type="text"],
.profile input[type="password"] {
  border: 1px solid #BDBDBD;
  border-radius: 0;
}
.profile .combobox {
  padding: 0 5px;
  margin-bottom: 0px;
  height: 37px !important;
  line-height: 37px;
  width: 250px !important;
  font-size: 16px;
}
.profile .combobox:not(.CLASSEDOC_ctrl) {
  left: calc(50% - 65px) !important;
}
.profile .textbox-container {
  width: 250px !important;
  left: calc(50% - 65px) !important;
}

.profile .textbox-container.txtPrePhone_ctrl,
.profile .textbox-container.txtPreCell_ctrl {
  width: 60px !important;
}
.profile .textbox-container.txtPhone_ctrl,
.profile .textbox-container.txtCell_ctrl {
  width: 180px !important;
  left: calc(50% + 5px) !important;
}

.profile .labelAsterisk {
  left: calc(50% + 190px) !important;
}
.profile .button,
.profile .btn-primary{
  text-transform: uppercase;
  font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;	
  width:auto !important;
  height:auto !important;	
  background-color: var(--btn-primary-bg-color);
  color:var(--btn-primary-txt-color);
  padding: 10px 20px;
  outline: none;
  border: 0;	
  margin:2px !important;
}
.profile .documentList .button,
.profile .documentList .btn-primary{
  margin-top: 30px !important;
  z-index: 2 !important;
}
.profile .labelOk{
  width: 100% !important;
}
.profile .documentList .dmsUpload_ctrl {
  top: 100px !important;
}
.profile .documentList .buttonClose_ctrl {
  right: 160px !important;
}
.profile .changeaddress .btnSave_ctrl,
.profile .changepw .btnSave_ctrl {
  left: 50% !important;
  transform: translateX(-50%);
}
/********************* GESTIONE OTP ********************************/
.enableOTP .boxLabel {
  width: 100% !important;
  min-height: 0 !important;
}
.enableOTP .boxLabel .label {
  width: 100% !important;
  min-height: 0 !important;
  margin: 10px 0 0 !important;
  text-align: center !important;
}
.enableOTP .qrSide_ctrl {
  margin: 0 !important;
}
.enableOTP .qrSide_ctrl td {
  text-align: center;
}
.enableOTP .qrSide_ctrl img {
  display: inline-block !important;
  margin: 20px 0 0 !important;
}
.enableOTP .boxActivate {
  margin: 20px 0 0 !important;
}
.enableOTP .boxActivate td {
  text-align: center;
}
.enableOTP .boxActivate .txtOTP_ctrl,
.enableOTP .boxActivate .txtOTP_ctrl input,
.enableOTP .boxActivate .button {
  display: inline-block !important;
  float: none !important;
  height: 40px !important;
  margin: 0 !important;
}
.enableOTP .boxActivate .button {
  margin-left: 10px !important;
}
.enableOTP .boxActivate .label {
  width: 100% !important;
  min-height: 0 !important;
  text-align: center !important;
}
.enableOTP .boxActivate .lblHelp4_ctrl {
  width: 100% !important;
  margin: 0 !important;
  text-align: center;
}
.enableOTP .boxActivate .btnActive_ctrl {
  float: left !important;
  margin: 10px 0 0 50% !important;
  transform: translateX(-50%);
}

/********************* AREA PERSONALE - MENU **********************/
.profile .lblMenu { /*menu nella combobox*/
  margin: 0px 0px 0px 10px !important;
  width: auto !important;
	margin-top: 10px !important;
  display:none;	
}
.profile .lblMenu optgroup{
	font-size:20px;
	color:var(--primary-color);
}
.profile .lblMenu option{
	font-size:18px;
	color:#303030;
}
.profile .menuview_slide {
  height: auto !important;
  margin: 0 0 20px 0 !important;
  display:block;
  background-color: #ffffff;
  width: 100% !important;	
  padding:20px;
}
.menuview_border, .menuview_border table {
  width: 100%;
}
.profile .menuview_slide div[id*=_slide]{/*menu aperto*/
  display:block !important;
  background-color:#f2f2f2;
}
.profile .menuview_slide div[id*=_slideChild] {
  padding-bottom: 20px;
}
.profile .menuview_slide .menuview_sep{
  height:20px;
  background-color: #ffffff;
}
.profile div[id$=_container_resource] {
  width:70% !important;
  margin: 0 !important;
}
.profile .boxTitle {
  margin: 0 !important;
}
.profile .boxMenu{	
  -webkit-border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0;
  -moz-background-clip: padding;
  border-radius: 0;
  background-clip: padding-box;
  width:25% !important;
  margin: 0 !important;
}
.profile .menuview_slide .menuview_font, 
.profile .menuview_slide .menuview_font_over{
  color:var(--primary-color);
  background-color: transparent !important;
  padding: 0px !important;
  font-size: 20px;
  font-weight: 700;
  padding: 10px 0px 5px 0px !important;
}
.profile .menuview_slide .parent.menuview_font, 
.profile .menuview_slide .parent.menuview_font_over {
  padding: 20px 15px !important;
}
.profile .menuview_slide td.menuview_sub_font, 
.profile .menuview_slide td.menuview_sub_font_over {
  font-size: 16px !important;
  color: #808080 !important;
  cursor: pointer;
  padding: 2px 10px 2px 15px;
} 
@media(max-width:992px){ 
  .profile .boxMenu{
    width: 100% !important;
    min-height: 40px !important;	
    background-color: #eeeeee !important;
    padding:5px;
    margin-bottom: 15px !important;
  }	
  .profile .boxMenu table td{		
    height: 40px !important;	
    vertical-align: middle !important;
  }
  .profile .lblMenu {		
    display:block;
  }
  .profile .menuview_slide {
    display:none;
  }
  .profile div[id$=_container_resource] {
    left: 0px;
    width: 100% !important;
  }		
}
/***************** AREA PERSONALE - DETTAGLIO  ORDINE ******************/
.myorder .box {
  width: auto !important;	
  margin:10px 0px !important;
  border:0px !important;
}
.myorder .box.boxButton {
  float:left !important;
}
.myorder .traceOrder .boxTotal {
  margin: 10px 0px 10px 0px !important;
  float:right;
}
.myorder.traceOrder .box.boxButton .btnAddToCart {
    margin: 20px 5px 0px 0px !important;
    font-size: 15px;
}
.myorder .traceOrder .labelBold {
  color:#6c6c6c;	
  height:20px;
  line-height:20px;
  text-align:left !important;
  font-size:16px
}
.traceOrder .labelBold a{
  font-size:16px;
  text-decoration: none;
}
.myorder .traceOrder div[id$=_imgTracking]{
  float:right;
  margin: 11px 15px;
}
.myorder .traceOrder .box50{
  width:50% !important;
}
.myorder .traceOrder .boxPag{
  clear: left !important;
}
.myorder .traceOrder .boxCons {
  clear: right !important;
}
.myorder .traceOrder .labelBold.stato{
  font-weight: 600;
  margin-top: -10px;
  margin-bottom: 20px;
  font-size:18px;
  color:var(--primary-color);
}
.myorder .traceOrder .labelH2{	
  color:#333333;
  font-weight: bold;
  height: 25px;
  line-height: 25px;
  margin: 0px 0px 0px 20px !important;
  font-size:18px;
}
.myorder .traceOrder .box.boxTotal .labelBold {
  width: 120px !important;
}
.myorder .traceOrder .box.boxTotal .labelH2 {
  width: 200px;
}
.myorder .traceOrder .box.boxTotal .labelBold, .box.boxTotal .labelH2 {
  margin: 0px !important;
  padding: 5px 10px;
}
.myorder .traceOrder .box.boxTitleRepeat .labelH2{
  font-size: 14px;
  margin: 0 !important;
  text-align: left !important;
}
.myorder .traceOrder .box.boxTitleRepeat {
  width: 100% !important;
}
.myorder .traceOrder .box.boxTitleRepeat .lblArt_ctrl {
  width: calc(100% - 350px) !important;
  padding-left: 20px;
}
.myorder .traceOrder .box.boxTitleRepeat .label4_ctrl,
.myorder .traceOrder .box.boxTitleRepeat .Quantità_ctrl,
.myorder .traceOrder .box.boxTitleRepeat .label6_ctrl {
  width: 100px !important;
}
.myorder .traceOrderItem {
  min-height: 0 !important;
  border-bottom: 1px solid #eee;
}
.myorder .traceOrderItem > * {
  margin: 0 !important;
}
.myorder .traceOrderItem span {
  float: left;
  height: auto !important;
  min-height: 40px !important;
}
.myorder .traceOrderItem .lblDesArt_ctrl,
.myorder .traceOrderItem .lblDesArtText_ctrl {
  display: flex;
  align-items: center;
  width: calc(100% - 350px) !important;
  padding-left: 20px;
  white-space: break-spaces;
}
.myorder .traceOrderItem .lblPrice_ctrl,
.myorder .traceOrderItem .lblQta_ctrl,
.myorder .traceOrderItem .lblTot_ctrl {
  width: 100px !important;
  line-height: 40px;
}
.myorder .traceOrderItem .imgTracking_ctrl {
  position: relative !important;
  width: 40px !important;
  height: 40px !important;
}
.myorder .traceOrderItem .imgTracking_ctrl a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.myorder .traceOrderItem .imgTracking_ctrl a::before {
  display: block;
  content: '\ea18';
  font-family: icons8_win10;
  text-align: center;
  line-height: 40px;
  font-size: 24px;
}
.myorder .traceOrderItem .imgTracking_ctrl .imgTracking {
  position: absolute !important;
  top: 0;
  left: 0;
  opacity: 0 !important;
}
.myorder .traceOrderItem .boxStateOrder {
  float: right;    
  margin: 0px !important;
  height: 40px !important;
  width: 10px !important;
}
/**************************FINE AREA PERSONALE **********************/

/*****************************  GRID ***************************/
.grid{
  padding-top:20px;
  font-size:16px;
}
.grid .grid .grid_row, .grid .grid .grid_rowodd{
  font-size: 14px;
  font-weight: normal;
  background-color:#FFFFFF;
  color:#808080;
  height: 22px !important;
}
.grid .grid_row.grid_rowselected,.grid .grid_rowodd.grid_rowselected{
  font-size: 14px;
  font-weight: normal;
  background-color:#f2f2f2;
  color:var(--primary-color);
  height: 22px !important;
}

.grid .grid_cell_title{
  font-weight: 600;
  background-color:#f2f2f2;
  padding-left: 4px;
  height: 40px !important;
  border-bottom: 1px solid #ddd;
}
.grid .grid_cell{
  padding: 16px 4px;
  border-bottom: 1px solid #eee;
  min-width:30px;	
  font-size:15px;
}
.grid .grid_cell a{
  text-decoration:none !important;
}
.grid .grid_cell.edit img, .grid .grid_cell.confirm img, .grid .grid_cell.delete img, .grid .grid_cell.download img{
  background-color: var(--primary-color) !important;
  width: 20px;
  height: 20px;
  border-radius:1px;
}
.grid .grid_cell.red {
  background-color: red;
  padding: 0px !important;
  display: inline-block;
  min-width:10px;
}
.grid .grid_cell.green {
  background-color: green;
  padding: 0px !important;
  display: inline-block;
  min-width:10px;
}
.grid .grid_cell.yellow {
  background-color: yellow;
  padding: 0px !important;
  display: inline-block;
  min-width:10px;
}
.grid .grid_cell.red div div,
.grid .grid_cell.green div div,
.grid .grid_cell.yellow div div{  
  min-height: 50px;
}
.grid .grid .grid_cell .mime {
  background-color: #ddd;
  width: 40px;
  display: inline-block;
  padding: 5px;
  border-radius: 5px;
  text-align: center;
  overflow: hidden;
  text-transform: uppercase;
  font-size: 14px;
}

/* GRID NAVBAR*/
.grid_navbar{
  margin:20px 0px 20px 0px;
}
.grid_navbar span[id$=page_numbers] {
  margin: 0px 5px 0px 5px;
}
.grid_navbar_curpage_input, 
.grid_navbar_totpages_input {
  border: none !important;
  border-bottom: 1px solid #000000 !important;
  width: 40px !important;
  font-family: "Open Sans" !important;
  font-size: 11px !important;
  padding: 3px !important;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.03) !important;	
  margin:0px !important;
  height:25px;
  min-height:25px !important;
}
.grid_navbar .grid_minus, .grid_navbar .grid_plus,
.grid_navbar .grid_first, .grid_navbar .grid_last,
.grid_navbar .grid_prev, .grid_navbar .grid_next{
  position: relative;
  display: inline-block;
  color: #fff;
  background-color: #808080 !important;
  width: 25px;
  height: 25px;
  max-width: initial;
}
.grid_navbar .grid_first_dis, .grid_navbar .grid_last_dis,
.grid_navbar .grid_prev_dis, .grid_navbar .grid_next_dis{
  display: none;
}
.grid_navbar .grid_minus:hover, .grid_navbar .grid_plus:hover,
.grid_navbar .grid_first:hover, .grid_navbar .grid_last:hover,
.grid_navbar .grid_prev:hover, .grid_navbar .grid_next:hover{
  color: #fff;
  background-color: var(--primary-color) !important;
}
.grid_navbar .grid_minus::after, .grid_navbar .grid_plus::after,
.grid_navbar .grid_first::after, .grid_navbar .grid_last::after,
.grid_navbar .grid_prev::after, .grid_navbar .grid_next::after{
  position: absolute;
  inset: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  font-family: 'icons8_win10';
}
.grid_navbar .grid_minus::after { content: '\ed62'; }
.grid_navbar .grid_plus::after  { content: '\ebed'; }
.grid_navbar .grid_first::after { content: '\ec6d'; }
.grid_navbar .grid_last::after  { content: '\ee2c'; }
.grid_navbar .grid_prev::after  { content: '\ea6b'; }
.grid_navbar .grid_next::after  { content: '\ea6c'; }
/*layer filtri*/
.grid .filters_body {
	margin: 0px 5px;
    padding: 5px 5px;
    border: 1px solid #BDBDBD;
}
.grid .filter_mask_container {
  width: 450px;
    background-color: #f2f2f2;
  box-shadow: 0 2px 5px rgba(0,0,0,0.14), 0 2px 10px 0 rgba(0,0,0,0.12);
}
.grid .filter_mask_top {
    height: 35px;    
}
.grid .filter_mask_content {
  background-image: url(../SpTheme_Fusion/formPage/empty.gif);
  background-position: left;
  background-repeat: repeat-y;
  margin: 0 auto 0 auto;
  padding: 0px 10px 0px 10px;
}
.grid .filter_mask_container .toplabel {
    font-size: 18px;
	font-weight:500;
    color: var(--primary-color);
}
.grid .buttonMaskContainer{
  top: 5px;
  right: 8px;
}
.grid .filter_mask {
  top: 4px;
  border-width: 0px;
  border-style: solid;
}
.grid .filter_mask_bottom {
  height: 15px;
  background-image: url(../SpTheme_Fusion/formPage/empty.gif);
  background-position: left top;
  background-repeat: no-repeat;
}
/* ordinamento nel layer */
.grid .grid_orderby_ul_pin {
  position: absolute;
  background-position: right;
}
.grid .grid_orderby_ul, .grid .search_fields_ul {
    width: 160px;
    padding: 10px;
    margin: 0px;
    font-size: 14px;
  position: absolute;
  z-index: 200;
    background-color: #f2f2f2;
    box-shadow: 0 2px 5px rgb(0 0 0 / 14%), 0 2px 10px 0 rgb(0 0 0 / 12%);    
    color: var(--primary-color);
}
.grid .filterByExampleHandler{
	display:none !important;
}
.grid .grid_orderby_ico.menu{
  background: none !important;
}
.grid .grid_orderby_li::before {    
	font-family: "icons8_win10";
  font-size: 20px;
  top: 3px;
  position: relative;
  margin-right: 5px;
  background-color: var(--btn-primary-bg-color);
  color:var(--btn-primary-txt-color);
  padding: 2px;
  border-radius: 5px;
}
.grid .grid_orderby_li.desc::before {    
	content: "\ea6a";      
}
.grid .grid_orderby_li.asc::before {    
	content: "\ea6d";    	
}
.grid .grid_orderby_li.add_desc::before{
	content: "\ebed";
}
.grid .grid_orderby_li.add_asc::before{
	content: "\ebed";
}
.grid .grid_orderby_li.find::before{
	content: "\e9fb";    
}
.grid .grid_orderby_li.del_sort::before{
	content: "\ed62";
}
/*maschera filtri*/
.buttonMask.iconFont::after {    
	font-family: "icons8_win10";
  font-size: 16px;
  position: relative;
  margin-right: 5px;
  background-color: var(--btn-primary-bg-color);
  color:var(--btn-primary-txt-color);
  padding: 4px;
  border-radius: 5px;
}
.grid_img_filter_addnew::after{
	content:"\EBED"
}
.grid_img_filter_apply::after{
	content:"\EF8B";
}
.grid_img_filter_close::after{
	content:"\F048";
}
.grid_img_filter_delete::after{
	content:"\F041";
}
.grid_img_filter_disable::after{
	content:"\F253";
}
/*ordinamento nei titoli*/
.grid .grid_orderby_ico.menu.desc::after {
	font-family: "icons8_win10";
    content: "\ea6a";
	color:var(--primary-color);
  font-size: 10px;
}
.grid .grid_orderby_ico.menu.asc::after {   
	font-family: "icons8_win10";
	content: "\ea6d";	
	color: var(--primary-color);
  font-size: 10px;
}
/**************************FINE GRID******** **********************/


/*********RIEPILOGO CARRELLO - LAYER ELENCO ARTICOLI ******/
.total-basket .basketTotalLayer {
    left: auto !important;
    z-index: 10001 !important;
    top: 50px !important;
    height: auto !important;
    right: 0;
    border: 1px solid #e8e8e8;
    background: #fff;
    padding: 15px 15px 0px 15px;
    text-align: left;
}
.total-basket-list{
	height:auto !important;
	min-height: 0 !important;
}
.total-basket-list .listitem{
	float: left;
    width: 100%;
	padding: 5px 0px;
    border-bottom: 1px solid #ddd;
}
.total-basket-list .listitem .image{
	float:left;
	margin: 2px;
	box-sizing: border-box;
}
.total-basket-list .listitem .itemrow{
	float: left;
	width: calc(100% - 54px);
	box-sizing: border-box;
}
.total-basket-list .listitem .itemrow:first-of-type {
	display: flex;
	justify-content: space-between;
}
.total-basket-list .listitem .itemrow .descri{
	text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    /*width: 125px;*/
    float: left;
    margin-left: 5px;
	font-weight:500;
}
.total-basket-list .listitem .itemrow .edit,
.total-basket-list .listitem .itemrow .remove {    
    display: inline-block;
	float:left;
}
.total-basket-list .listitem .itemrow .edit:before {
    content: "\f0ba";
    font-family: "icons8_win10";
    color: var(--primary-color);
    float: left;
    margin-left: 10px;
}
.total-basket-list .listitem .itemrow .remove:before {
    content: "\f048";
    font-family: "icons8_win10";
    color: var(--primary-color);
    float: left;
    margin-left: 10px;
}
.total-basket-list .listitem .itemrow .price{
	font-weight: 500;    
    font-size: 15px;
    margin: 0px 5px;
}
.total-basket-list .listitem .itemrow .qta{
	margin: 0px;
}
.total-basket-list .listfooter{
	float: left;
    width: 100%;
}
.total-basket-list .listfooter .total{
    margin: 10px 5px 0px 0px !important;
    padding: 0px !important;
    font-size: 15px;
	font-weight: 600;
    width: auto !important;
    float: left;
}
.total-basket-list .listfooter .gotobasket {
    margin: 5px 0px 15px 0px !important;
    float: right !important;
    display: block;
    font-size: 12px;
    white-space: nowrap;
    padding: 5px 10px;
    text-transform: uppercase;
    text-decoration: none;
    background-color: var(--btn-primary-bg-color) !important;
    color:var(--btn-primary-txt-color);
}
/******FINE RIEPILOGO CARRELLO - LAYER ELENCO ARTICOLI ******/

/*****************************REGISTRAZIONE************************/
.registration-section .form-group select,
.registration-section .form-group input{
	margin: 0px;
    font-family: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif !important;
    font-size: 20px;
}
.registration-section {
    padding: 0px 15px;
}
.registration-section div[id*=CompZone] {
    height: auto !important;
}
.registration-section .form-group a img[id*=_captcha_img] {
    height: 55px;
}
.registration-section .form-group .custom-control {
	min-height:auto;
}
.registration-section .form-group .checkbox-control-input {
    width: 30px !important;
    height: 30px !important;
    float: left;
    margin: 0px;
}
.registration-section .form-group .checkbox-control-label {
	top: auto !important;
    float: left;
    margin-left: 20px;
	margin-bottom:20px;
    width: calc(100% - 50px);
    height: 30px;
    line-height: 30px;
}
.registration-section .form-group .checkbox-control-label a{    
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
    display: inline-block;
    overflow: hidden;
}
.registration-section .form-group .labelSection h4{
    text-align: left !important;
    padding: 10px;
	  color:var(--primary-color);
}
.registration-section .form-wrapper .form-group .required::after{
	content:"";
	display:none;
}
.registration-section .form-wrapper .form-group .required::before {
    content: "*";
    margin: 0px 0px 0px 10px;
    float: right;
    color: var(--primary-color);
    font-size: 30px !important;
}
.registration-section .form-wrapper .form-group .alternate::before {
    content: "**";
    margin: 0px 0px 0px 10px;
    float: right;
    color: var(--primary-color);
    font-size: 30px !important;
}
.registration-section .form-group .control-label-error {
	color:red !important;
}
.registration .gscs_pwdmeter_container .pwdmeter{
	width:100%;
}
.registration .gscs_pwdmeter_container .pwdmeter div[id*=img_bg_gradient]{
	width:auto;
}
.registration .gscs_pwdmeter_container div[id*=_pwdMeter] {
	height:auto;
}
.registration .gscs_pwdmeter_container span[id*=_lbPwdmetter] {
    width: 100%;
    top: 25px !important;
}
.registration-section .form-group span[id*=_autosuggestCity_wrp] {
    top: auto !important;
    width: 100% !important;
    left: 0px !important;
    position: relative !important;
}
.registration-section .form-group textarea[id*=autosuggestCity] {
    height: 58px !important;
    padding: 15px;
    font-size: 20px;
    border: none;
    line-height: 30px;
}
.registration-section .form-group .city_sw {
    top: 60px !important;
    left: 15px !important;
    background-color: #ffffff;
    width: auto !important;
    padding: 15px !important;
    font-size: 20px;
    right: 15px;
}
.registration-section .form-group .city_sw .over {
	color:var(--highlight-bg-color);
	font-weight:500;
}
.registration-section .form-group .city_sw li{
	width: 100% !important;
}
.registration_azi{
	padding-bottom:5px;
}
/*************************FINE REGISTRAZIONE************************/

/******************************BOX RICERCA **************************/
.search {
	min-width:100px !important;
}
.search .labelSearch{
	display:none !important;
}
.search .combobox {
    height: 40px !important;
    top: 0px !important;
    left: auto !important;
    right: auto !important;
    position: relative !important;
    float: left;
    border: 1px solid #bdbdbd;
    font-size: 15px;
    padding: 10px 2px;
}
.search .textbox-container {
    width: auto !important;
	height: 40px !important;
    line-height: 40px !important;
    right: auto !important;
    left: auto !important;
    float: left;
    position: relative !important;    
	border: 1px solid #bdbdbd !important;
	max-width: calc(100% - 50px);
}
.search .textSearch {
	min-width: 150px;
	max-width: 250px;
    padding: 10px !important;    
    font-family: 'Montserrat';
    font-size: 20px;
	border: none !important;
}
.search .button {
    float: left;
    position: relative !important;
    left: auto !important;
    right: auto !important;
	top:auto !important;
    height: 40px !important;
    width: 40px !important;    
    border: 1px solid #bdbdbd;
    background: url(../img/search-icon.png) no-repeat center center #bdbdbd;
	background-size:20px 20px;
  box-shadow: none;
  border-radius: 0px;
}
.search .button:hover{
	background-color: var(--btn-secondary-hover-bg-color);
}

@media(max-width:992px){
	.logo-bar .main-header{
		flex-flow: row wrap;
	}
	div[class*=search_container]{
		width:auto;
		display:inline-block
	}
	.logo-bar .col-logo {
		order: 1;
	}
	.logo-bar .col-search{
	    width: 100%;
		display: inline-block;
		margin: 90px 0px 0px 0px;
		text-align: center;
		background-color: #f2f2f2;
	    padding: 15px 10px 10px 10px;
		order: 3;
	}	
	.search .combobox {	
		margin: 0px;
	}
	.logo-bar .col-shortlinks {
		padding: 0;
		right: 10px;
		display: inline-block;
		order: 2;
	}
}
@media(max-width:768px){	
	div[class*=search_container]{
		width:100%;
	}
	.search .textbox-container {
		margin: 0px 0px 5px 5px;
		width: 100% !important;
	}
	.search .textSearch {
		max-width: 100%;
	}
	.search .combobox {
		width: calc(100% - 10px) !important;
		margin: 0px 5px 5px 5px;
	}
	.header-link-wrapper .link-icon::after {
		font-size: 30px;
	}
}
/************************FINE BOX RICERCA **************************/

/*Common icone */
.product-info .favourite,
.product-info .compare,
.product .favourite,
.product .compare
 {
  color: var(--btn-light-txt-color);
  background: var(--btn-light-bg-color);
  cursor:pointer;
  width: 32px;
  height: 32px;
  line-height: 32px;
  float: left;
}
.product-info .favourite,
.product-info .compare{
  float:right;
}
.product-info .favourite:hover,
.product-info .compare:hover,
.product .favourite:hover,
.product .compare:hover,
.product-info .favourite.selected:hover,
.product-info .compare.selected:hover,
.product .favourite.selected:hover,
.product .compare.selected:hover
{
  background-color:var(--btn-light-hover-bg-color);
  color: var(--btn-light-hover-txt-color);
}
.product-info .favourite.selected,
.product-info .compare.selected,
.product .favourite.selected,
.product .compare.selected
 {
  background-color: var(--btn-primary-bg-color);
  color:var(--btn-primary-txt-color);

}
.product-info .favourite::after, 
.product-info .compare::after,
.product .favourite::after, 
.product .compare::after {
    display: block;
    font-family: 'icons8_win10';
    font-size: 30px;
    text-align: center;
}
.product-info .compare::after,
.product .compare::after {
    /*content: "\f7ff";
    transform: rotate(90deg);*/
	content: "\ea24";	
}

.product-info .favourite::after,
.product .favourite::after{
	content:"\f5d1";
}

/*Note negli articoli preferiti*/
.product-info .product-notes{
	display: flex;
	width: 100%;
	align-items: flex-end;
	padding: 5px 0;
}
.product-info .product-notes .note{
    cursor: pointer;
    color: var(--btn-light-txt-color);
    background: var(--btn-light-bg-color);
    width: 32px;
    height: 32px;
    line-height: 32px;
    padding: 0;
}
.product-info .product-notes .note:hover
{
  background-color:var(--btn-light-hover-bg-color);
  color: var(--btn-light-hover-txt-color);
}
.product-info .product-notes .note::after{
    display: block;
    font-family: 'icons8_win10';
    font-size: 30px;
    text-align: center;
	content: "\ecb3";	
}
.product-info .product-notes textarea{
    resize: none;
    flex-grow: 1;
    margin-right: 5px;
    height: 60px;
    border: 1px solid #ddd;
}

/*Sticky Header*/
.scroll-active .promo-banner, .scroll-active .top-bar {
	position: absolute;
    height: 0px;
	min-height: 0px;
	padding: 0px;
    overflow: hidden;
	border: 0px;
	top: 0px;
	left: 0px;
	right: 0px;
	width: 100%;
}

.scroll-active .logo-bar {
	padding: 20px 0px;
}
.promo-banner {
    -webkit-transition: ease height,padding 300ms;
    transition: ease height,padding 300ms;
}
.scroll-active .header-link-wrapper .link-text {
	font-size: 12px;
}

/*********************************************************/
/************ MENU CATEGORIE VERTICALE & FLAT ************/
/*********************************************************/
.categoryMenuVertical,
.categoryMenuFlat {
  position: static !important;
  min-height: 0 !important;
  height: auto !important;
  overflow: auto;
}
.categoryMenuVertical .menuview_vertical {
  position: static !important;
  width: 100% !important;
  height: auto !important;
  margin-bottom: 20px;
}
.categoryMenuVertical .menuview_vertical .topmenu {
  margin: 0 !important;
}
.categoryMenuVertical ul,
.categoryMenuFlat ul {
  background-color: #ffffff;
  padding: 0px;
  margin-bottom: 10px;
  border: 1px solid #dddddd;
  margin-left: 0px !important;
  list-style-type: none;
}
.categoryMenuVertical ul ul,
.categoryMenuFlat ul ul {
  box-shadow: none;
  border: none;
  margin: 0px;
  padding: 0px;
}
.categoryMenuVertical ul,
.categoryMenuFlat ul,
.categoryMenuVertical ul li,
.categoryMenuFlat ul li {
  position: relative !important;
  inset: 0 auto auto 0;
  opacity: 1 !important;
  visibility: visible !important;
}
.categoryMenuVertical li a,
.categoryMenuFlat li a {
  display: block;
  padding: 10px 20px;
  border-bottom: 1px solid #f3f3f3;
  color: #000000;
  text-decoration: none;
  font-size: 16px !important;
  transition: all .2s ease-in-out;
}
.categoryMenuVertical li a:hover,
.categoryMenuFlat li a:hover {
  background-color:var(--primary-color);
  color:#ffffff;
}
/**************************************************/
/************ MENU CATEGORIE ACCORDION ************/
/**************************************************/
.categoryMenuAccordion{
  margin: 0 !important;
  width: auto !important;
  min-width:100px !important;
}
.categoryMenuAccordion div>ul {
  background-color: #ffffff;
  padding: 0px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  margin-left: 0px !important;
  list-style-type: none;
}
.categoryMenuAccordion div>ul ul{
  list-style: none;
}
.categoryMenuAccordion div>ul .subMenu:after{	
  content: "\f143";
  font-family: 'icons8_win10';
  font-size:12px;
  float: right;
}
.categoryMenuAccordion div>ul .subMenu.active:after {
  content: "\f146";
  color: #ffffff;
}
.categoryMenuAccordion div>ul li a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  border-bottom: 1px solid #f3f3f3;
  color: #000;
  transition: all .2s ease-in-out;
}
.categoryMenuAccordion div>ul li a:hover,
.categoryMenuAccordion div>ul li a.active {
  background: var(--primary-color);
  color: #ffffff;
}
.categoryMenuAccordion div>ul li ul {
  display: none;
  padding:0;
}
.categoryMenuAccordion div>ul li ul li a {
  padding: 10px 15px 10px 40px;
}
.categoryMenuAccordion div>ul li ul li ul li a {
  padding: 10px 65px;
}
/** Menu in sidebar */
.sidebar .categoryMenuVertical ul,
.sidebar .categoryMenuFlat ul,
.sidebar .categoryMenuAccordion ul {
  background: #f2f2f2;
  border: 0;
  padding: 10px;
}
.sidebar .categoryMenuVertical ul li a,
.sidebar .categoryMenuFlat ul li a,
.sidebar .categoryMenuAccordion ul li a {
  border-bottom: 0;
  font-weight: 300;
  padding: 10px 15px;
}
/****************************************************/
/************ MENU CATEGORIE ORIZZONTALE ************/
/****************************************************/
.categoryMenuHorizontal,
.categoryMenuHorizontal .menuview_horizontal {
  position: static !important;
  display: block !important;
  height: auto !important;
}
.categoryMenuHorizontal .menuview_horizontal {
  margin-bottom: 20px;
}
.categoryMenuHorizontal ul {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #ddd;
  background: #fff;
}
.categoryMenuHorizontal .topmenu {
  display: flex !important;
  flex-flow: row wrap;
  justify-content: space-between;
}
.categoryMenuHorizontal .topmenu ul {
  display: none;
  top: 100% !important;
  left: -1px !important;
  width: auto !important;
}
.categoryMenuHorizontal li {
  top: 0 !important;
  display: block;
  float: none !important;
  text-align: center;
  line-height: 20px;
}
.categoryMenuHorizontal li:hover > ul {
  display: block;
}
.categoryMenuHorizontal li[style*="clear: left"] {
  display: none !important;
}
.categoryMenuHorizontal li a {
  position: static !important;
  display: block !important;
  padding: 10px 15px;
  text-decoration: none;
  font-size: 16px !important;
  color: #000;
  transition: all .2s ease-in-out;
  white-space: nowrap;
  text-align: left;
}
.categoryMenuHorizontal li a:hover,
.categoryMenuHorizontal li a.active {
  background: var(--primary-color);
  color: #ffffff;
}
.categoryMenuHorizontal li.parent > a {
  position: relative;
  padding-right: 30px;
}
.categoryMenuHorizontal li.parent > a::after {
  position: absolute;
  top: 50%;
  right: 10px;
  display: inline;
  content: '\f143';
  font-family: 'icons8_win10';
  text-align: center;
  transform: translateY(-50%);
}
.categoryMenuHorizontal ul ul li.parent > a::after {
  content: '\f145';
}
.categoryMenuHorizontal .topmenu ul ul {
  left: 100% !important;
  top: -1px !important;
}
/* Fix header & footer horizontal & flat*/
header .categoryMenuHorizontal .menuview_horizontal {
  margin-bottom: 0;
  overflow: visible !important;
}
header .categoryMenuHorizontal li {
  display: block !important;
}
header .categoryMenuFlat .topmenu,
header .categoryMenuHorizontal .topmenu {
  background: transparent !important;
}
header .categoryMenuFlat .topmenu ul,
header .categoryMenuHorizontal .topmenu ul {
  position: absolute !important;
}
/*header*/
header .categoryMenuFlat ul,
header .categoryMenuFlat li a,
header .categoryMenuHorizontal ul,
header .categoryMenuHorizontal li a,
/*footer*/
footer .categoryMenuFlat ul,
footer .categoryMenuFlat li a,
footer .categoryMenuHorizontal ul,
footer .categoryMenuHorizontal li a {
  border: 0;
  margin: 0;
  padding: 0;
  font-size: 18px !important;
  line-height: 27px;
}
footer .categoryMenuFlat li,
footer .categoryMenuHorizontal li {
  padding: 5px 0;
}
footer .categoryMenuFlat li a,
footer .categoryMenuHorizontal li a {
  display: inline-block;
}
.top-bar .categoryMenuFlat li a:hover,
.top-bar .categoryMenuHorizontal li a:hover,
footer .categoryMenuFlat li a:hover,
footer .categoryMenuHorizontal li a:hover {
  background-color: transparent;
  color: var(--primary-color);
}
/* Fix hamburger menu flat */
.nav-menu-mobile .categoryMenuFlat ul {
  background: transparent;
  border: 0;
  margin: 0;
}
.nav-menu-mobile .categoryMenuFlat li a {
  border: 0;
}
.nav-menu-mobile .categoryMenuFlat li a:hover {
  background: transparent !important;
  color: var(--primary-color);
}
.top-nav-mobile .categoryMenuFlat li a {
  font-size: 10px !important;
}
.main-nav-mobile .categoryMenuFlat li a {
  font-size: 12px !important;
}
/******************************************/
/************ ELENCO CATEGORIE ************/
/******************************************/
.categoriesList.html .gadget.grid > .title,
.categoriesList.html .gadget.block > .title,
.categoriesList.html .gadget.column > .title,
.categoriesList.html .gadget.list > .title{
	display: flex;
  line-height: 50px;
  overflow: hidden;
  margin-bottom: 10px;
	padding:10px;
}
.categoriesList.html .gadget.grid > .title span,
.categoriesList.html .gadget.block > .title span,
.categoriesList.html .gadget.column > .title span,
.categoriesList.html .gadget.list > .title span{
	padding-right: 20px;
  font-size: 24px;
  font-weight: 500;
  color: #333333;
  flex: 0 0 auto;
}
.categoriesList.html .gadget.grid > .title:after,
.categoriesList.html .gadget.block > .title:after,
.categoriesList.html .gadget.column > .title:after,
.categoriesList.html .gadget.list > .title:after{
  content: '';
  display: inline-block;
  height: 28px;
  border-bottom: 2px solid var(--primary-color);
  flex: 100 0 auto;
}
/*grid default*/
.categoriesList.html .gadget.grid .category{
	display:flex;
}
.categoriesList.html .gadget.grid .category .titleimg,
.categoriesList.html .gadget.grid .category .descri{
	padding:10px;
}
/*block variant*/
.categoriesList.html .gadget.block .categories{
	display:inline-block;
}
.categoriesList.html .gadget.block .category{
	float:left;
	padding:40px;
}
/*column variant*/
.categoriesList.html .gadget.column .category{
	padding:10px;
}
/*list variant*/
.categoriesList.html .gadget.list .category{
	padding:5px 10px;
}
/* slide e slide-image variant */
.categoriesList.html .slide img, .categoriesList.html .slide-image img {
    width: auto;
}
/******************************************/
/************ ELENCO CONTENUTI ************/
/******************************************/
.contentsList.html .gadget > .title {
  display: flex;
  line-height: 50px;
  overflow: hidden;
  margin-bottom: 10px;
  padding:10px;
}
.contentsList.html .gadget > .title span {
  padding-right: 20px;
  font-size: 24px;
  font-weight: 500;
  color: #333333;
  flex: 0 0 auto;
}
.contentsList.html .gadget > .title:after {
  content: '';
  display: inline-block;
  height: 28px;
  border-bottom: 2px solid var(--primary-color);
  flex: 100 0 auto;
}
/* list default*/
.contentsList.html .gadget.list .content{	
  padding:10px;
}
/* block variant*/
.contentsList.html .gadget.block .contents{	
  display:inline-block;
}
.contentsList.html .gadget.block .content{		
  float:left;
  padding:40px;	
  max-width: 33%;
  min-width: 260px;
}
.contentsList.html .gadget.block .content .title,
.contentsList.html .gadget.block .content .image,
.contentsList.html .gadget.block .content .abstract{
  padding:10px;
}
.contentsList.html .gadget.block .titleimg img{
  width: 100%;
  height: auto;
}
/* grid variant*/
.contentsList.html .gadget.grid .content{	
  display:flex;
}
.contentsList.html .gadget.grid .content .image,	
.contentsList.html .gadget.grid .content .title,	
.contentsList.html .gadget.grid .content .abstract{	
  padding:10px;
}
.contentsList.html .gadget.grid .content .image img{
  width:100px;
  height:auto;
}
/* slide variant */
.contentsList.html .slide .content {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
}
.contentsList.html .slide .content .info {
  position: absolute;
  top: 50%;
  left: 60px;
  right: 60px;
  color: #fff;
  transform: translateY(-50%);
}
.contentsList.html .slide .content .info.no-image {
  position: static;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  flex: 1 0 100%;
  padding: 20px;
  color: #333;
  background: #c595a8;
  transform: none;
}
.contentsList.html .slide.dark .content .info {
  color: #333;
}
.contentsList.html .slide .content .info .title {
  font-size: 1.5em;
  font-weight: 700;
  text-transform: uppercase;
}
.contentsList.html .slide .content .info .subtitle {
  font-size: 1.2em;
  margin-top: 10px;
}
.contentsList.html .slide .content .info div+.view-button {
  margin-top: 20px;
}
.contentsList.html .slide .content .info .view-button .btn {
  font-weight: 700;
}

/******************************************************/
/************ INSERIMENTO MASSIVO ARTICOLI ************/
/******************************************************/
.insItemsList {
  min-width: 0 !important;
}
.insItemsList .titleSearch {
  width: 100% !important;
  margin: 0 0 10px 0 !important;
  font-weight: 700;
}
.insItemsList .select,
.insItemsList .deselect,
.insItemsList .add {
  margin: 0 !important;
  width: auto !important;
  height: 50px !important;
  box-shadow: none !important;
  background-color: var(--btn-primary-bg-color);
  color: var(--btn-primary-txt-color);
}
.insItemsList .select:hover,
.insItemsList .deselect:hover,
.insItemsList .add:hover {
  background-color: var(--btn-primary-hover-bg-color);
  color: var(--btn-primary-hover-txt-color);
}
.insItemsList .deselect {
  margin-left: 10px !important;
}
.insItemsList .add {
  float: right !important;
}
.insItemsList .repeater {
  margin: 0 !important;
}
.insItemsList .itemsListGrid {
  margin-bottom: 20px;
  min-width: 0 !important;
  height: 105px !important;
  border-bottom: 1px solid #ddd;
}
.insItemsList input[type=text] {
  height: 40px !important;
  line-height: 40px;
  border: 1px solid #ddd;
  padding: 5px;
  text-align: center !important;
}
.insItemsList select {
  height: 40px !important;
  font-size: 14px;
  background-color: #e0e0e0;
  border: 0;
  padding: 5px !important;
  margin: 0 !important;
  font-size: 14px !important;
  color: #333;
  font-weight: 400;
  font-family: inherit;
}
.insItemsList .Check_BRSEL_ctrl {
  top: 5px !important;
  left: 5px !important;
}
.insItemsList .desArt,
.insItemsList .desArt a {
  top: 5px !important;
  left: 30px !important;
  right: auto !important;
  min-height: 0 !important;
  width: auto !important;
  height: 20px !important;
  line-height: 20px;
}
.insItemsList .desArt {
  max-width: calc(100% - 35px);
}
.insItemsList .txtPRICE_ctrl,
.insItemsList .labelSimbol_ctrl,
.insItemsList .SCO1_ctrl,
.insItemsList .SCO2_ctrl,
.insItemsList .SCO3_ctrl,
.insItemsList .SCO4_ctrl {
  top: 30px !important;
  height: 40px !important;
}
.insItemsList .txtPRICE_ctrl {
  left: 5px !important;
  width: 80px !important;
}
.insItemsList .labelSimbol_ctrl {
  line-height: 40px;
  left: 90px !important;
}
.insItemsList .textbox-container[class*='SCO'] {
  width: auto !important;
}
.insItemsList .textbox-container[class*='SCO'] input {
  width: 50px !important;
}
.insItemsList .textbox-container[class*='SCO']::after {
  content: '%';
  margin-left: 2px;
  line-height: 40px;
}
.insItemsList .dispLabel[class*='lblPer'] {
  display: none !important;
}
.insItemsList .SCO1_ctrl { left: 130px !important; }
.insItemsList .SCO2_ctrl { left: 205px !important; }
.insItemsList .SCO3_ctrl { left: 280px !important; }
.insItemsList .SCO4_ctrl { left: 355px !important; }
.insItemsList .labelPriceFinalInfo_ctrl {
  opacity: 0 !important;
}
.insItemsList .labelPriceFinalInfo_ctrl,
.insItemsList .labelPriceFinal_ctrl,
.insItemsList .CmbUniMis_ctrl,
.insItemsList .QTA_ctrl,
.insItemsList .addToBasket {
  bottom: 35px !important;
}
.insItemsList .labelPriceFinalInfo_ctrl,
.insItemsList .labelPriceFinalInfo_ctrl a,
.insItemsList .labelPriceFinal_ctrl,
.insItemsList .labelPriceFinal_ctrl a {
  top: auto !important;
  right: 295px !important;
  left: auto !important;
  color: var(--dark-color) !important;
  font-weight: 700;
  font-size: 24px;
  line-height: 40px;
  height: 40px !important;
  width: auto !important;
}
.insItemsList .CmbUniMis_ctrl {
  top: auto !important;
  left: auto !important;
  right: 185px !important;
  width: 100px !important;
  background-image: url(../img/bg-select.png);
  background-repeat: no-repeat;
  background-position: right 10px top 14px;
  background-size: 8px 10px;
  appearance: none;
  font-family: inherit !important;
  font-size: 12px;
  font-weight: 400;
  padding-right: 25px !important;
}
.insItemsList .labelQTA_ctrl {
  display: none !important;
}
.insItemsList .QTA_ctrl {
  top: auto !important;
  left: auto !important;
  right: 140px !important;
  height: 40px !important;
  font-size: 16px !important;
}
.insItemsList .addToBasket {
  top: auto !important;
  right: 0 !important;
  width: 140px !important;
  line-height: 40px;
  padding: 0px 45px 0px 15px;
  background-color: var(--btn-primary-bg-color);
  color: var(--btn-primary-txt-color);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  cursor: pointer;
}
.insItemsList .addToBasket:hover {
  background-color: var(--btn-primary-hover-bg-color);
  color: var(--btn-primary-hover-txt-color);
}
.insItemsList .addToBasket::after {
  position: absolute;
  right: 10px;
  top: 0px;
  content: "\ea1d";
  font-family: 'icons8_win10';
  font-size: 30px;
  text-align: center;
  line-height: 40px;
  font-weight: 400;
}
.insItemsList .lbAddInfo_ctrl {
  top: auto !important;
  right: 5px !important;
  bottom: 5px !important;
  width: auto !important;
  line-height: 25px;
}
.insItemsList .boxDisponib {
  position: absolute;
  left: 5px;
  bottom: 5px;
  height: 25px;
  width: auto;
}
.insItemsList .lbIncomming1_ctrl,
.insItemsList .lbIncomming2_ctrl,
.insItemsList .lbAvailable1_ctrl,
.insItemsList .lbAvailable2_ctrl,
.insItemsList .lbNotProc1_ctrl,
.insItemsList .lbNotProc2_ctrl {
  position: static !important;
  float: left;
  width: auto !important;
  height: 25px !important;
  line-height: 25px;
  text-align: left !important;
  white-space: nowrap;
}
.insItemsList .lbIncomming2_ctrl,
.insItemsList .lbAvailable2_ctrl,
.insItemsList .lbNotProc2_ctrl {
  margin-left: 5px;
  margin-right: 15px;
  color: var(--primary-color);
}
.editInfoRow {
  width: auto !important;
  max-width: 100%;
  min-width: 0 !important;
  min-height: 0 !important;
}
.editInfoRow input,
.editInfoRow span,
.editInfoRow div {
  margin: 0 !important;
}
.editInfoRow .lbomg_ctrl,
.editInfoRow .lbomg_ctrl div {
  height: 20px !important;
  line-height: 20px !important;
}
.editInfoRow .lbREQFORW_ctrl,
.editInfoRow .lbREQFORW_ctrl div,
.editInfoRow .lbREQFORWLIMIT_ctrl,
.editInfoRow .lbREQFORWLIMIT_ctrl div {
  height: 30px !important;
  line-height: 30px !important;
}
.editInfoRow .buttonConf_ctrl {
  right: 5px;
  bottom: 0;
  line-height: 40px;
  height: 40px;
  width: auto;
  padding: 0px 15px;
  background-color: var(--btn-primary-bg-color);
  color: var(--btn-primary-txt-color);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  cursor: pointer;
  border: 0;
  border-radius: 0;
}
.editInfoRow .buttonConf_ctrl:hover {
  background-color: var(--btn-primary-hover-bg-color);
  color: var(--btn-primary-hover-txt-color);
}
.catgestDtlPrz {
  height: auto !important;
  font-size: 16px !important;
}
.catgestDtlPrz .Grid11_ctrl {
  height: auto !important;
}
.catgestDtlPrz .grid_table > div > div {
  overflow: visible !important;
}
.catgestDtlPrz .btnSelect_ctrl,
.catgestDtlPrz .btnSelect_ctrl:active {
  right: 5px;
  bottom: 0;
  line-height: 40px;
  height: 40px !important;
  width: auto !important;
  padding: 0px 15px !important;
  background-color: var(--btn-primary-bg-color);
  color: var(--btn-primary-txt-color);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  cursor: pointer;
  border: 0;
  border-radius: 0 !important;
}
.catgestDtlPrz .btnSelect_ctrl:hover {
  background-color: var(--btn-primary-hover-bg-color);
  color: var(--btn-primary-hover-txt-color);
}
@media screen and (max-width: 1499px) {
  .insItemsList .itemsListGrid {
    height: 160px !important;
  }
}
@media screen and (max-width: 767px) {
  .insItemsList .itemsListGrid {
    height: 150px !important;
  }
  .insItemsList .labelPriceFinal_ctrl,
  .insItemsList .CmbUniMis_ctrl,
  .insItemsList .QTA_ctrl,
  .insItemsList .addToBasket {
    bottom: 30px !important;
  }
}
/*****************************************/
/************ GADGET IMMAGINE ************/
/*****************************************/
.image.html .gadget > .title {
  display: flex;
  line-height: 50px;
  overflow: hidden;
  margin-bottom: 10px;
  padding:10px;
}
.image.html .gadget > .title span {
  padding-right: 20px;
  font-size: 24px;
  font-weight: 500;
  color: #333333;
  flex: 0 0 auto;
}
.image.html .gadget > .title:after {
  content: '';
  display: inline-block;
  height: 28px;
  border-bottom: 2px solid var(--primary-color);
  flex: 100 0 auto;
}

.addAllToBasket {
  padding: 20px 0;
  height: auto;
  width: 100%;
  text-align: right;
}

/*---------------------------------*/
.product-info .labelPrice_ctrl div,
.productSheet .product-price-container div {
	display: inline-block;
	width: auto !important;
}

/*--- info btn ---*/
.lblPriceInfo {
	display: block;
	margin-bottom: 8px;
	font-size: 12px;
	cursor: pointer;
}
.lblPriceInfo:hover {
	color: var(--primary-color);
}
.lblPriceInfo div {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 5px;
}
.price-info-label {
	margin-bottom: 10px;
}
.price-info-label a {
	display: flex;
	align-items: center;
	gap: 5px;
}
.price-info-label a,
.price-compare-info a {
	color: #666;
}
.price-info-label a:hover,
.price-compare-info a:hover {
	color: #000;
}
.price-compare-info a::before,
.price-info-label a::before,
.lblPriceInfo div::before {
	content: '\ef46';
	height: 16px;
    line-height: 16px;
	font-family: icons8_win10;
	font-size: 16px;
}
.price-compare-info {
	display: inline-block;
	height: 1em;
	font-size: inherit;
	text-decoration: none !important;
}
.price-compare-info a {
	display: block;
	margin-left: 5px;
	text-decoration: none !important;
}
.price-compare-info a span {
	display: none;
}

/*--- gscs_message layer ---*/
.spModalLayer .resource_container > div,
.spModalLayer .resource_container .gscs_message_container,
.spModalLayer .resource_container .gscs_message_container > div {
	height: 100%;
}
.spModalLayer .gscs_message_portlet {
	display: flex;
	flex-flow: column nowrap;
	justify-content: space-between;
	font-size: 16px;
}
.spModalLayer .gscs_message_portlet .alert-actions {
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-end;
	gap: 1rem;
}

/*--- gadget componenti kit ---*/
.kit-components .products {
	display: grid;
	grid-gap: 1rem;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.kit-components .products .product {
	justify-content: flex-start;
}
.kit-components .products .product-info {
	padding: 10px;
	height: auto;
}
.kit-components .products .product-name {
	margin-bottom: 10px;
}
.kit-components .products .product-availabilities .val {
	margin-left: 5px;
}
.kit-components .products .goto-sheet {
	display: inline-block;
	margin-top: 5px;
}