.config_wrapper .btn.selected {
  border: 1px solid #ed1d47;
  box-shadow: 0 0 6px #ed1d47;
}
.config_wrapper .categoria_case .btn:hover, .config_wrapper .categoria_case .btn:active {
  background-color: #3a3a3a !important;
}
.config_wrapper .categoria_case .btn.selected {
  background-color: #3a3a3a;
  border: none;
  box-shadow: none;
}
.config_wrapper section {
  padding: 20px;
}
.config_wrapper section.titolo_wrapper {
  background-color: #3a3a3a;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
}
.config_wrapper section.riepilogo {
  background-color: #ebebeb;
  font-size: 18px;
  padding: 8px 20px;
  position: sticky;
  top: 70px;
  z-index: 50;
}
.config_wrapper section.riepilogo .btn-procedi {
  font-size: 18px;
}
.config_wrapper section.riepilogo .totali {
  background-color: #FFFFFF;
  color: #ed1d47;
  padding: 15px;
  font-weight: 700;
  margin-left: 1rem;
}
.config_wrapper section#configuratore_items {
  background-color: #f3f3f3;
}
.config_wrapper section#configuratore_items .products_wrapper {
  min-height: 150px;
  position: relative;
}
.config_wrapper section#configuratore_items .products_wrapper .loader {
  position: absolute;
  left: 50%;
  top: 30%;
  transform: translate(-50%, -50%);
  display: block;
}
.config_wrapper section#configuratore_items .products_wrapper .noitems {
  background-color: #ffcfd9;
  font-size: 16px;
  padding: 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.config_wrapper section#configuratore_items .config_item {
  margin-bottom: 1.5rem;
}
.config_wrapper section#configuratore_items .config_item.disabled {
  opacity: 0.2;
  pointer-events: none;
}
.config_wrapper section#configuratore_items .config_item .titolo {
  background: black;
  height: 50px;
  color: #FFFFFF;
  font-size: 17px;
  font-weight: 700;
}
.config_wrapper section#configuratore_items .config_item .products_wrapper {
  overflow-x: scroll;
  border: 1px solid #ddd;
  padding: 1.5rem;
  background-color: #fff;
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  font-size: 16px;
}
.config_wrapper section#configuratore_items .config_item .products_wrapper > button {
  min-width: 150px;
}
.config_wrapper section#configuratore_items .config_item .select_wrapper {
  border: 1px solid #ddd;
  padding: 1.5rem;
  background-color: #fff;
  font-size: 16px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 1.5rem;
}
.config_wrapper section#configuratore_items .config_item .select_wrapper .row.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.config_wrapper section#configuratore_items .config_item.brand_case .products_wrapper .item {
  max-width: 50%;
}
.config_wrapper section#configuratore_items .config_item.brand_case .products_wrapper .item img {
  max-width: 80px;
}
.config_wrapper section#configuratore_items .config_item.brand_case .products_wrapper > button {
  min-width: 80px;
}
.config_wrapper section#configuratore_items .config_item.prodotti_case img {
  max-width: 100%;
}
.config_wrapper section#configuratore_items .config_item.prodotti_case .item {
  flex: 0 0 auto;
  width: 15rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.config_wrapper section#configuratore_items .config_item.prodotti_case .item a {
  padding: 0;
}
.config_wrapper section#configuratore_items .config_item.prodotti_case .descrizione p {
  font-size: 12px;
  text-align: center;
  margin-bottom: 3px;
}
.config_wrapper section#configuratore_items .config_item.prodotti_case .descrizione .name {
  height: 4.5rem;
  overflow: auto;
  margin-bottom: 1rem;
}

.loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  border: 3px solid;
  border-color: #3a3a3a #3a3a3a transparent transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

.loader::after,
.loader::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 3px solid;
  border-color: transparent transparent #ed1d47 #ed1d47;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-sizing: border-box;
  animation: rotationBack 0.5s linear infinite;
  transform-origin: center center;
}

.loader::before {
  width: 32px;
  height: 32px;
  border-color: #3a3a3a #3a3a3a transparent transparent;
  animation: rotation 1.5s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotationBack {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
img {
  max-width: 100%;
}

.infolink {
  padding-bottom: 3px;
}

.prodotti_upsell .products_wrapper a {
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.alert_carrello {
  background-color: rgb(45, 45, 45);
  color: #FFFFFF;
  font-size: 18px;
  padding: 40px;
  width: 40rem;
  max-width: 100%;
  line-height: 1.4;
}
.alert_carrello .btn {
  font-size: 1.2rem;
  width: 46%;
}

.modalAlertCarrello {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.modalAlertCarrello.open {
  opacity: 1;
  visibility: visible;
}

.products_wrapper .custom-radio {
  border-color: #ed1d47;
  background-color: rgba(237, 29, 71, 0.2);
}

.modalAlertCarrello {
  position: fixed;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.7);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}/*# sourceMappingURL=front.css.map */