/* modale */
#modal-container-tg {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999999;
}
#close-modal-tg {
	position:absolute;
	top:0;
	right:0;
	font-size:1.3rem;
	display:flex;
	justify-content:center;
	align-items:center;
	text-align:center;
	width:2.2rem;
	height:2.2rem;
	color:#000;
	font-weight:400;
	cursor:pointer;
}
.modal-overlay-tg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: 0.8;
	z-index: 99;
	cursor: pointer;
}
.modal-content-box-tg {
	position: fixed;
	background-color: #fff;
	z-index: 100;
	top: 50%;
	left: 50%;
	width: min(92vw, 1024px);
	height: auto;
	max-height: 92vh;
	overflow-y: auto;
	transform: translate(-50%,-50%);
	padding:1rem;
	box-sizing:border-box;

	h1, h2, h3 {
		margin-top: 0;
	}
}
.stopscroll-tg {
	overflow:hidden !important;
}
#tabella-taglie-mobile {
	display:none;
}
.sizetxt {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	column-gap: 10px;
	row-gap: 10px;
	align-items: center;
	margin-top:10px;
}
#sizesheet {
	text-transform: uppercase;
	border-bottom: 1px solid black;
	transition: all 0.3s ease;
	color:black;
}
.ruler {
	height:24px;
	width:24px;
	background-image: url('/wp-content/uploads/ruler.svg');
	background-size:100% 100%;
	background-repeat:no-repeat;
	background-position:center center;
}

@media (max-width:768px) {
	#tabella-taglie-desktop {
		display:none;
	}
	#tabella-taglie-mobile {
		display:inline-block;
	}

	.modal-content-box-tg {
		padding:2rem 1rem 0.5rem;
	}
}
/**/