﻿#background-opacity {
	position: absolute;
	height: 100%;
	width: 100%;
	background-color: black;
	opacity: 0.6;
	z-index: 9998;
}

#unsupported-browser-modal {
	display: none;
	position: absolute;
	top: calc(50% - 186px);
	left: calc(50% - 320px);
	border: 1px solid rgb(255, 105, 91);
	width: 580px;
	z-index: 9999;
	background-color: #fff2f2;
	padding: 32px;
}

.browsers-wrapper {
	display: flex;
	justify-content: space-around;
	margin-top: 25px;
}

.browser-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	border: 2px solid transparent;
}

.browser-item:hover {
	border: 2px dotted #aaa;
	cursor: pointer;
}

.unsupported-browser-modal-footer {
	margin-top: 25px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

#unsupported-browser-modal-close-button {
	padding: 0.5rem 1.5rem;
	background-color: rgb(255, 105, 91);
	border-color: rgb(255, 105, 91);
}

.unsupported-browser-message {
	text-align: center;
	margin-bottom: 5px;
}

.unsupported-browser-message.first-line {
	font-weight: 600;
	font-size: 17px;
}

.footer-sub-message {
	text-align: center;
	font-size: 12px;
	font-style: italic;
}

.browser-item > .subtitle {
	color: #aaa;
	text-align: center;
	font-size: 12px;
	display: block;
}

.browser-item > .title {
	color: #e25600;
	border-collapse: collapse;
	width: 100%;
	clear: both;
	text-decoration: underline;
}

.edge-icon {
	padding: 10px;
	height: 96px;
	width: 96px;
}

@media screen and (max-width: 635px) {
	#unsupported-browser-modal {
		width: calc(100% - 20px);
		margin: 0 0 0 10px;
		left: auto;
		min-width: 268px;
	}
}

@media screen and (max-width: 434px) {
	#unsupported-browser-modal {
		top: 1%;
		padding: 10px;
	}

	.browsers-wrapper {
		flex-direction: column;
		margin-top: 10px;
	}

	.unsupported-browser-modal-footer { margin-top: 10px; }

	.browser-item { margin-bottom: 10px; }
}