:root {
	--blubase: #0485be;
	--pcolor: #0485be;
	--scolor: black;
	--dcolor: #ccc;
}

.k-preview body {
	background-color: orange;
}
body {
	padding-top: 60px;
}
body #main {
	background-color: #fff;
	font-family: "mr-eaves-xl-modern", sans-serif;
	font-size: 1.2rem;
	
}
#contents .mp-ec a:hover,
#user-menu a,
.overlay a,
#contents a {
	color: var(--pcolor);
}

#user-menu a:hover,
.overlay a:hover,
#contents a:hover {
	text-decoration: underline;
}

h2 {
	color: var(--pcolor);
  font-size: 2rem;
	font-weight: bold;
	margin: 1rem 0;
	text-transform: uppercase;
}
h2:after {
	border-bottom: 4px solid var(--pcolor);
	color: var(--pcolor);
	content: "";
	display: block;
	width: 100%;
}

h3 {
    font-family: "mr-eaves-xl-sans", sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 2rem;
    margin-bottom: 0.75rem;	
}
.mp-prodotto h3 {
	height: 70px;
}

.mp-menu {
	display: inline-block;
	padding: 5px 10px;
	text-align: center;
}
#contents .mp-menu {
	margin: 0 0 .5rem 0;
}

.mp-menu:hover {
  text-decoration: none !important;	
}
.mp-menu:after {
	content: "";
	display: block;
	height: 2px;
	width: 0;
	background-color: transparent;
	transition: all ease-in-out 0.5s;
}
.mp-menu.mp-active:after,
.mp-menu:hover:after {
  background-color: var(--pcolor);
	width: 100%;
}

#contents .mp-button,
.mp-button {
  background-color: var(--pcolor);
	border: 1px solid var(--pcolor);
	color: #fff;
  display: inline-block;
	padding: 5px 10px;
	text-decoration: none !important;
  white-space: nowrap;
}
#contents .mp-button:disabled,
.mp-button:disabled {
  background-color: var(--dcolor);
	border: 1px solid var(--dcolor);
}
#contents .mp-button.mp-active,
.mp-button.mp-active {
	background-color: var(--dcolor);
	border: 1px solid var(--dcolor);
}
#contents .mp-button {
	margin-right: 10px;
}
.overlay .mp-close {
	color: #fff;
	height: 30px;
	line-height: 25px;
	padding: 0;
	position: absolute;
	right: 0;
	text-align: center;
	top: 0;
	width: 30px;
}
.password .overlay .mp-close,
.login .overlay .mp-close {
	display: none;
}
.overlay .mp-button:hover,
.overlay .mp-close:hover,
#contents .mp-ec a:hover .mp-button,
#contents .mp-ec a:hover,
#contents .mp-button:hover {
	color: var(--scolor);
	text-decoration: none;
}
.mp-box {
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 5px;
	margin: 30px 3px 0 3px;
	position: relative;
	overflow: hidden;
}
.mp-prodotto {
	padding-bottom: 130px;
	min-height: 600px;
	min-width: 375px;	
	margin: 30px auto 0 auto;
}
.mp-prodotto img {
	max-height: 300px;
	width: 100%;
}

.mp-prodotto .mp-ec {
  bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
}
.mp-prodotto .mp-ec > p,
.mp-prodotto .mp-ec > ul {
	padding: 0 15px;
}
.detail-link {
	border-bottom: 4px solid var(--pcolor);
}
.mp-errore:not(:empty) {
	border: 1px solid red;
	border-radius: 100px;
	color: red;
	font-size: 12px;
	font-weight: 700;
	padding: 0 3px;
	text-align: center;
}
.mp-errore:not(:empty):hover {
	background-color: red;
	color: #fff;
  text-decoration: none;
}
.mp-errore-form {
	color: red;
}

#abbonamenti li,
#indirizzi li,
#ordini-elenco li {
	border-bottom: 1px dotted var(--dcolor);
	padding-bottom: 20px;
}
#abbonamenti li:last-child,
#indirizzi li:last-child,
#ordini-elenco li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

#mp-mask {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.7);
	transition: opacity 500ms;
	z-index: 20;
}
#mp-mask .mp-container {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50% -50%);
}
#mp-mask .mp-spinner {
	width: 50px;
	aspect-ratio: 1;
	border-radius: 50%;
	border: 8px solid var(--scolor);
	border-right-color: #fff;
	animation: l2 1s infinite linear;
    animation: rotation 1s linear infinite;
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.overlay {
	background: rgba(0, 0, 0, 0.4);
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	opacity: 0;
	right: 0;
	transition: opacity 500ms;
	visibility: hidden;
	z-index: 10;
}
.password .overlay,
.login .overlay {
	background: #fff;
	top: 50px;
}
.overlay:target {
	visibility: visible;
	opacity: 1;
}
.overlay .container {
	background: #fff;
  	box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.2);
	left: 0;
	max-height: 90%;
	max-width: 960px;
	min-width: 300px;
	overflow: auto;
	position: relative;
	top: 30px;
}
.password .overlay .container,
.login .overlay .container {
	box-shadow: none;
    margin-top: 0 !important;
	top: 0;
}

.absolute {
  position: absolute;
}
.block {
  display: block;
}
.flex {
  display: flex;
}
.basis-1\/3 {
  flex-basis: 33.333333%;
}
.basis-1\/6 {
  flex-basis: 16.666667%;
}
.basis-2\/6 {
  flex-basis: 33.333333%;
}
.basis-3\/6 {
  flex-basis: 50%;
}
.border {
  border-width: 1px;
}
.cursor-pointer {
  cursor: pointer;
}
.fixed {
  position: fixed;
}
.flex {
  display: flex;
}
.flex-row {
  flex-direction: row;
}
.gap-2 {
  gap: .5rem;
}
.gap-10 {
  gap: 2.5rem;
}
.grow {
  flex-grow: 1;
}
.hidden {
  display: none;
}
.inline-block {
  display: inline-block;
}
.items-center {
  align-items: center;
}
.items-start {
  align-items: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.left-0 {
  left: 0;
}
.max-w-\[90px\] {
  max-width: 90px;
}
.max-w-\[1040px\] {
  max-width: 1040px;
}
.max-w-screen-lg {
  max-width: 1024px;
}
.mr-2 {
  margin-right: .5rem;
}
.mt-2 {
  margin-top: .5rem;
}
.ml-auto {
  margin-left: auto;
}
.ml-1 {
  margin-left: .25rem;
}
.mr-auto {
  margin-right: auto;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mx-5 {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}
.my-3 {
  margin-bottom: .75rem;
  margin-top: .75rem;
}
.my-5 {
  margin-bottom: 1.25rem;
  margin-top: 1.25rem;
}
.paragraph {
  text-align: justify;
}
.p-1 {
  padding: .25rem;
}
.p-2 {
  padding: .5rem;
}
.pr-2 {
  padding-right: .5rem;
}
.pt-1 {
  padding-top: .25rem;
}
.px-1 {
  padding-left: .25rem;
  padding-right: .25rem;
}
.px-2 {
  padding-left: .5rem;
  padding-right: .5rem;
}
.px-3 {
  padding-left: .75rem;
  padding-right: .75rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.p-5 {
  padding: 1.25rem;
}
.py-1 {
  padding-bottom: .25rem;
  padding-top: .25rem;
}
.relative {
  position: relative;
}
.right-0 {
  right: 0;
}
.rounded-full {
  border-radius: 9999px;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-justify {
  text-align: justify;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-right {
  text-align: right;
}
.text-sm {
  font-size: .875rem;
  line-height: 1.25rem;
}
.top-0 {
  top: 0;
}
.top-\[60px\] {
  top: 60px;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.list {
  list-style-type: disc;
}
.w-32 {
  width: 8rem;
}
.w-full {
  width: 100%;
}
.w-\[80px\] {
  width: 80px;
}
.z-30 {
  z-index: 30;
}

@media (min-width: 640px) {
  .sm\:inline-block {
    display: inline-block;
  }	
  .sm\:max-w-\[150px\] {
    max-width: 150px;
  }
  .sm\:top-\[0px\] {
    top: 0;
  }
}
@media (min-width: 768px) {
	.md\:basis-1\/3 {
		flex-basis: 33.333333%;
	}
	.md\:basis-1\/6 {
		flex-basis: 16.666667%;
	}	
	.md\:flex-row {
		flex-direction: row;
	}
}
@media (min-width: 1024px) {
  .lg\:flex {
    display: flex;
  }
}

header {
	background: linear-gradient(180deg,#00000080 0,#0000004d);
	height: 52px;
}
header a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}
.logo {
	background: url(https://www.mondopadano.it/img/mp_logo_bianco.png) 0 0 no-repeat;
	background-size: contain;
	height: 42px;
	max-width: 50%;
	top: 0;
	width: 153px;
}
.boxed-link {
	background-color: var(--pcolor);
	color: #fff;
	display: inline-block;
	padding: 5px 10px;
}
#contents {
	margin: 0 auto 60px auto;
  	max-width: 1280px;
}
footer {
  background-color: #161616;
  color: #fff;
}
footer .first-row {
  background-color: #333;
}
footer .blockContainer {
  margin: 0;
  padding: .25rem 0;
}
footer ul.list {
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
  list-style-position: inside;
  padding: 0 1rem;
}
footer li {
  line-height: normal;
  margin: 10px 0;
}
.mp-paragraph {
  text-align: justify;
}
.mp-paragraph {
  text-align: justify;
}
