.everything, .network-error {
	min-height: calc(100vh - 379px);
}

.network-error {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	color: red;
	background-color: rgba(255, 235, 238, 0.5);
	text-align: center;
}

.network-error svg {
	margin-bottom: 6px;
}

.no-details {
	padding: 17px 0;
	text-align: center;
}

.loading-report {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.loading-report>p {
	margin-top: -7px;
}

.report-details .fixed-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.report-details .fixed-content .left>.tag-container {
	display: flex;
	flex-flow: row wrap;
}

.report-details .fixed-content .left>.tag-container .tag {
	font-size: 13px;
	border-radius: 4px;
	color: white;
	background-color: #3D2A7C;
	margin-right: 6px;
	margin-bottom: 8px;
	padding: 3px 12px;
}

.report-details .fixed-content .right>button {
	border: none;
	border-radius: 6px;
	margin-right: 8px;
	background-color: white;
	padding: 5px 12px;
	transition: all 130ms;
}

.report-details .fixed-content .right>button:hover {
	transform: scale(1.02, 1.02);
}

.report-details .fixed-content .right>button:active {
	transform: scale(0.97, 0.97);
}

.report-details .fixed-content .right>button:last-of-type {
	color: white;
	background-color: #66bb6a;
	font-size: 15px;
	font-weight: 500;
	padding: 7px 12px;
	margin-right: 0;
}

.report-details .everything-else .image-content {
	position: relative;
	width: 100%;
}

.report-details .everything-else .image-content .imgs {
	display: flex;
	flex-direction: row;
	justify-content: center;
	overflow-x: auto;
	scroll-behavior: smooth;
}

.report-details .everything-else .image-content .imgs .blank-img-div {
	height: 100%;
	width: 25vw;
	background-color: red;
}

.report-details .everything-else .image-content .imgs img {
	min-height: 580px;
	height: 60vw;
	max-width: 95%;
	object-fit: contain;
}

.report-details .everything-else .image-content .imgs iframe {
	width: 70vw;
	height: 80vh;
}

.report-details .everything-else .image-content .btns {
	position: absolute;
	top: 30%;
	width: 100%;
}

.report-details .everything-else .image-content .btns button {
	border: none;
	border-radius: 12px;
	transition: all 80ms;
	overflow: hidden;
}

.report-details .everything-else .image-content .btns button span {
	height: 30px;
	width: 30px;
	margin: 0;
	padding: 0;
	padding-top: 5px;
	font-size: 30px;
}

.report-details .everything-else .image-content .btns button:hover {
	transform: scale(1.2, 1.2);
	background-color: #66BB6A;
}

.report-details .everything-else .image-content .btns button:hover span
	{
	color: white;
}

.report-details .everything-else .image-content .btns button.left {
	float: left;
}

.report-details .everything-else .image-content .btns button.right {
	float: right;
}

.report-details .everything-else .description-content {
	margin: 20px 0;
	padding: 0 17px;
}

.report-details .everything-else .description-content .top-bar {
	display: flex;
	overflow-x: auto;
	margin-bottom: 35px;
}

.report-details .everything-else .description-content .top-bar .top-bar-section
	{
	min-width: 300px;
}

.report-details .everything-else .description-content .top-bar .top-bar-section ul
	{
	padding-left: 14px;
}

.report-details .everything-else .description-content .top-bar>.highlights
	{
	color: white;
	background-color: #4caf50;
}

.report-details .everything-else .description-content .top-bar>div {
	border-radius: 8px;
	background-color: white;
	padding: 12px 15px;
	margin: 10px 13px;
}

.report-details .everything-else .description-content .top-bar>div h6 {
	margin-top: 5px;
	margin-bottom: 12px;
}

.report-details .everything-else .description-content .top-bar>div span
	{
	display: block;
}

.report-details .everything-else .description-content .section {
	margin-left: 18px;
	margin-bottom: 40px;
}

.report-details .everything-else .description-content .section>.title-with-icon
	{
	display: flex;
	align-items: center;
	width: fit-content;
}

.report-details .everything-else .description-content .section>.title-with-icon span
	{
	position: relative;
	top: -4px;
	margin-right: 6px;
	max-width: 24px;
}

.report-details .everything-else .description-content .section p {
	margin-bottom: 16px;
}

.report-details .everything-else .description-content .customizations .category
	{
	margin: 24px 0;
	padding: 14px 18px;
	background-color: white;
	border: 2px solid #eee;
	border-radius: 6px;
}

.report-details .everything-else .description-content .customizations .category:hover
	{
	border: 2px solid #bdbdbd;
}

.report-details .everything-else .description-content .customizations .category .btn-wrapper
	{
	display: flex;
	flex-flow: row wrap;
}

.report-details .everything-else .description-content .customizations .category .btn-wrapper button
	{
	padding: 2px 9px;
	margin: 10px 8px;
	border: 2px solid #4E4271;
	border-radius: 4px;
	background-color: white;
	transition: all 100ms;
}

.report-details .everything-else .description-content .customizations .category .btn-wrapper button:first-of-type
	{
	margin-left: 0;
}

.report-details .everything-else .description-content .customizations .category .btn-wrapper button.selected
	{
	color: white;
	background-color: #4E4271;
	margin: 10px 14px;
	transform: scale(1.05, 1.05);
}

.report-details .everything-else .description-content .customizations .category .btn-wrapper button:first-of-type.selected
	{
	margin-left: 5px;
}

.report-details .everything-else .description-content .customizations .category .img-wrapper
	{
	max-width: 100%;
}

.report-details .everything-else .description-content .customizations .category .img-wrapper img
	{
	max-width: 100%;
}

.report-details .everything-else .description-content .problems .bullet,
	.report-details .everything-else .description-content .a-la-carte .bullet
	{
	display: flex;
	align-items: center;
}

.report-details .everything-else .description-content .problems .bullet span,
	.report-details .everything-else .description-content .a-la-carte .bullet span
	{
	margin-right: 10px;
}

.report-details .everything-else .description-content .problems .problem,
	.report-details .everything-else .description-content .problems .item,
	.report-details .everything-else .description-content .a-la-carte .problem,
	.report-details .everything-else .description-content .a-la-carte .item
	{
	padding: 7px 9px;
	border-radius: 4px;
	margin: 10px 0;
	width: fit-content;
	background-color: white;
}

.report-details .everything-else .description-content .problems .problem.selected,
	.report-details .everything-else .description-content .problems .item.selected,
	.report-details .everything-else .description-content .a-la-carte .problem.selected,
	.report-details .everything-else .description-content .a-la-carte .item.selected
	{
	color: white;
	background-color: #4E4271;
	border: 2px solid transparent;
}

.report-details .everything-else .description-content .problems .problem.selected span,
	.report-details .everything-else .description-content .problems .item.selected span,
	.report-details .everything-else .description-content .a-la-carte .problem.selected span,
	.report-details .everything-else .description-content .a-la-carte .item.selected span
	{
	font-weight: 600;
}

.report-details .everything-else .description-content .problems .img-container,
	.report-details .everything-else .description-content .a-la-carte .img-container
	{
	width: 100%;
}

.report-details .everything-else .description-content .problems .img-container img,
	.report-details .everything-else .description-content .a-la-carte .img-container img
	{
	width: 650px;
}

.report-details .everything-else .description-content .problems .section-outlined,
	.report-details .everything-else .description-content .a-la-carte .section-outlined
	{
	border: 2px solid #4E4271;
}

@media screen and (max-width: 577px) {
	.fixed-content .left>h4 {
		margin-bottom: 18px 0;
	}
	.everything-else .top-bar {
		display: flex;
		flex-flow: column wrap;
	}
}

.hide {
	display: none;
}

.everything .h1, .everything .h2, .everything .h3, .everything .h4,
	.everything .h5, .everything .h6, .everything h1, .everything h2,
	.everything h3, .everything h4, .everything h5, .everything h6 {
	margin-bottom: 0.5rem;
	font-weight: 500;
	line-height: 1.2;
}

.everything h1, .everything h2, .everything h3, .everything h4,
	.everything h5, .everything h6 {
	margin-top: 0;
	margin-bottom: 0.5rem;
}

.everything .h1, .everything h1 {
	font-size: 2.5rem;
}

.everything .h2, .everything h2 {
	font-size: 2rem;
}

.everything .h3, .everything h3 {
	font-size: 1.75rem;
}

.everything .h4, .everything h4 {
	font-size: 1.5rem;
}

.everything .h5, .everything h5 {
	font-size: 1.25rem;
}

.everything .h6, .everything h6 {
	font-size: 1rem;
}

.everything button, .everything input, .everything optgroup, .everything select,
	.everything textarea {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
    cursor: pointer;
}

.title-with-icon-error {
	display: inline-flex;
	align-items: center;
	color: red;
}

.title-with-icon-error h4 {
	margin-left: 5px;
}

.loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 20px;
  height: 20px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}