
*::-webkit-scrollbar-track {
	box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	border-radius: 8px;
	background-color: #f5f5f5;
}

*::-webkit-scrollbar {
	width: 8px;
	height: 8px;
	background-color: #f5f5f5;
}

*::-webkit-scrollbar-thumb {
	border-radius: 8px;
	box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	background-color: #555;
}

/* Modal */
.modal__backdrop {
	background: rgba(0, 0, 0, 0.65);
	bottom: 0;
	left: 0;
	overflow: auto;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 999;

	display: flex;
	justify-content: center;
	align-items: center;

}
.modal__container {
	background: #fff;
	border-radius: 5px;
	max-width: 100%;
	margin: 50px auto;
	padding: 15px;

}
.modal__title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 25px;
}
.modal__closeButton {
	position: absolute;
	right: 20px;
	top: 15px;
	appearance: none;
	outline: none;
	appearance: none;
	background: none;
	border: 0;
}
