/* Dropdown Button */
.dropbtn {
	/* background-color: #000; */
	/* color: white; */
	/* padding: 16px; */
	border: none;

	font-size: 1.2rem;
	font-family: 'Nunito', sans-serif;
	font-weight: 200;
	width: 100%;

	background-color: #fff;
	/* border-radius: 0px; */
	padding: 1rem;
	color: #000;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
	position: relative;
	/* display: inline-block; */
	text-align: center;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
	bottom: 0;
	display: none;
	position: absolute;
	overflow: auto;
	padding: 5px;
	max-height: 25rem;
	background-color: #f1f1f1;
	width: max-content;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
	color: black;
	padding: 5px 3px;
	text-decoration: none;
	display: block;
	text-align: left;
	border-bottom: 1px #b8b8b8 solid;
}

.dropbtn span {
	float: right;
}

/* Change color of dropdown links on hover */
.dropdown-content a:not(#choose-text):hover {
	background-color: #ddd;
}

/* Show the dropdown menu on hover */
/* .dropdown:hover .dropdown-content {
	display: block;
} */

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
	color: #000;
	background-color: #fff;
}

.dropdown .dropbtn:hover {
	border: solid 1px #000;
}

#package-container .reviews-summary {
	margin: 1rem auto;
}

@media (max-width: 800px) {
	.dropbtn {
		padding: 1rem;
		width: 100%;
	}

	.dropdown-content {
		bottom: auto;
		width: fit-content;
	}
}