
details {
	position: relative;
	width: 156px;
	height:64px;
	margin-right: 1rem;
	border:3px solid #191E4A;
}

details[open] {
	z-index: 1;
}

summary {
	padding: 0.9rem;
	cursor: pointer;
	border-radius: 5px;
	background-color: #FCFCFC;
	list-style: none;
}

summary::-webkit-details-marker {
	display: none;
}

details[open] summary:before {
	display: block;
	width: 100vw;
	height: 100vh;
	background: transparent;
	position: fixed;
	top: 0;
	left: 0;
}

/*summary:after {
	content: '';
	display: inline-block;
	margin-top: 5px;
	float: right;
	width: .5rem;
	height: .5rem;
	border-bottom: 4px solid currentColor;
	border-left: 4px solid currentColor;
	border-bottom-left-radius: 2px;
	transform: rotate(45deg) translate(50%, 0%);
	transform-origin: center center;
	transition: transform ease-in-out 100ms
}*/

summary:focus {
	outline: none;
}

/*details[open] summary:after {
	transform: rotate(-45deg) translate(0%, 0%);
}*/
.select-qty>ul {
	width: 100%;
	background: #FCFCFC;
	position: absolute;
	top: calc(100%);
	left: 0;
	margin: 0;
	box-sizing: border-box;
	border-radius: 5px;
	max-height: 256px;
	overflow-y: auto;
	border: 3px solid #191E4A;

}

.select-qty>ul>li {
	margin: 0;
	border-bottom: 1px solid #ccc;
	height:50px;

}

.select-qty>ul>li:first-child {
	padding-top: 0;
}

.select-qty>ul>li:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

/* FAKE SELECT */

summary.radios {
	counter-reset: radios;
}

summary.radios:before {
	content: var(--selection);
}

summary>input[type=radio] {
	counter-increment: radios;
	appearance: none;
	display: none;
}

summary>input[type=radio]:checked {
	display: inline;
	--display: block;

}

summary>input[type=radio]:after {
	content: attr(title);
	display: inline;
	font-family: 'Sofia Pro Semi Bold';
	font-size: 24px;
	line-height: 30px;
	letter-spacing: 0.48px;
}

.select-qty>ul.list {
	counter-reset: labels;
}

.select-qty>ul>li>label {
	width: 100%;
	display: flex;
	cursor: pointer;
	flex-wrap: wrap;
	justify-content: space-around;
	font-size: 24px;
	line-height: 30px;
	letter-spacing: 0.48;
	align-content: center;
	margin: auto;
    height: 50px;
	font-family: 'Sofia Pro Semi Bold';
}

.select-qty>ul>li>label span {
	--display: none;
	display: var(--display);
	width: 1rem;
	height: 1rem;
	border: 1px solid #727272;
	border-radius: 3px;
}