.btn-modal-size {
	width: 50%;
}

.link {
	text-decoration: underline;
	color: #000;
}

.btn-modal-size button {
	position: relative;
	display: flex;
	height: 45px;
	border: 1px solid #000;
	background: #fff;
	padding: 20px;
	font-size: 18px;
	font-weight: 400;
	align-items: center;
	cursor: pointer;
	justify-content: center;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
	width: 100%;

}


.modal-size-table {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.5);
	background-color: var(--dark-purple);
	color: #fff;
	padding: 1rem 2rem 1.5rem;
	width: 98%;
	max-width: 600px;
	border-radius: 20px;
	opacity: 0;
	transition: 0.2s;
}

.modal-size-table.show {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

.modal-size-table .close {
	margin-inline-start: auto;
	width: auto;
	height: auto;
	display: block;
	cursor: pointer;
	background: transparent;
	border: none;
	padding: 0;
}

.modal-size-table .close svg {
	width: 40px;
	height: 40px;
}

.modal-size-table .title {
	text-align: center;
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 1.5;
	margin: 30px 0;
}

.popup.modal-size-table {
	max-width: 900px;
	height: 700px;
	overflow-y: auto;
}

.list-size {
	display: flex;
	flex-direction: column;
	flex: 100%;
}

button {
	color: #3A3A3A;
}

div#close-review {
	position: absolute;
	right: 0;
	top: 0;
	font-size: 21px;
	cursor: pointer;
	padding: 20px;
}

.review {
	margin-bottom: 20px;
}

.review p {
	margin-block-start: 5px;
	margin-block-end: 5px;
}

.review-rating .star {
	font-size: 24px;
	color: #ccc;
	cursor: pointer;
}

.review-rating .star.filled {
	color: #000000;
}

.block-rating {
	margin: 20px 0;
}



@media (max-width: 579px) {
	.popup.modal-size-table {
		max-width: 900px;
		max-height: 300px;
		overflow-y: auto;
	}

	.modal-size-table .close svg {
		width: 30px;
		height: 30px;
	}

	.btn-modal-size button {
		font-size: 16px;
	}
}

@media (max-width: 459px) {
	.btn-modal-size button {
		font-size: 12px;
	}
}