@charset "utf-8";

#report {
	background: white;
	width: fit-content;
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	max-width: 800px;
	border-radius: 5px;
	box-shadow: 0px 10px 50px 25px rgba(0, 0, 0, 0.15);
}
#report #dialog_exit_holder{
	position: relative;
	top: -1rem;
    left: calc(100% - 1.5rem);
}
.report__titleGrid {
	display: flex;
	justify-content: space-between;
	width: -webkit-fill-available;
	padding: 0 2rem;
	margin-top: 2rem;
}
.report__title {
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--brand-marine);
}

.report__text {
	padding: 0 2rem;
	line-height: 1.5;
}

.report__reasons {
	margin: auto;
	padding: 1.5rem 0;
	display: flex;
	flex-direction: column;
	width: 100%;
}
.report__reasons button {
	border: none;
	border-top: 1px solid white;
	border-bottom: 1px solid white;
	margin: 0;
	padding: 1rem 1.25rem;
	font-size: 1rem;
	font-weight: 600;
	color: gray;
}
.report__reasons button:focus {
	background-color: #b53471;
	color: white;
}
#report__textArea {
	border: none;
	width: -webkit-fill-available;
	margin: 0px 2rem;
	padding: 1rem 1.25rem;
	font-size: .85rem;
	font-weight: 600;
	color: rgb(50, 50, 50);
	background-color: rgb(239, 239, 239);
	min-height: 80px;
	max-height: 150px;
	line-height: 1.5;
	resize: vertical;
}
#report__textArea::placeholder {
	color: gray;
}

#report__submit {
	width: -webkit-fill-available;
	background-color: var(--brand-marine);
	border: none;
	padding: 1rem;
	margin-top: 1rem;
	color: white;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 1rem;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

@media only screen and (max-width: 900px) {

	#report{
		max-width: 85vw;
	}
	#report #dialog_exit_holder{
			top: .5rem;
			left: calc(100% - 3.5rem);
	}
	.report__titleGrid{
		margin-top: 1.5rem;
		margin-right: 3rem;
		padding: 0 1.5rem;
	}
	.report__text{
		padding: 0 1.5rem;
		margin: 2rem 0 0;
	}
	#report__textArea{
		margin: 0 1.5rem;
	}
}
@media only screen and (max-width: 400px) {
	#report{
		max-width: 100vw;
	}
}