.nfd-installer-modal {
	align-items: center;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	height: 100vh;
	justify-content: center;
	left: 0;
	position: fixed;
	top: 0;
	width: 100vw;
	z-index: 99;

	@media (max-width: #{ ($break-small) }) {
		top: 30px;
	}

	&__content {
		background-color: #fff;
		border-radius: 8px;
		box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
		max-width: 80vw;
		padding: 72px;
		position: relative;
		text-align: center;
		width: 620px;

		@media (max-width: #{ ($break-small) }) {
			padding: 24px;
			width: 80vw;
		}

		&-heading {
			color: #333;
			font-size: 22px;
			font-weight: 300;
			line-height: 1.2;
			margin-bottom: 60px;

			@media (max-width: #{ ($break-small) }) {
				font-size: 18px;
				margin-bottom: 20px;
			}
		}

		&-section {
			align-items: center;
			display: flex;
			flex-direction: column;
		}

		&-image {
			width: 200px;
			margin-bottom: 30px;

			@media (max-width: #{ ($break-small) }) {
				width: 100px;
			}
		}

		&-subheading {
			color: #333;
			font-size: 16px;
			font-weight: 300;
			margin-bottom: 30px;

			@media (max-width: #{ ($break-small) }) {
				font-size: 14px;
				margin-bottom: 10px;
			}
		}

		&-error {
			align-items: center;
			display: flex;
			flex-direction: row;
			font-size: 16px;

			@media (max-width: #{ ($break-small) }) {
				font-size: 14px;
			}

			&--icon {
				flex-shrink: 0;
				margin-right: 5px;
			}

			&--text {
				font-weight: 300;
				line-height: 20px;

				&-link {
					all: unset;
					color: #1e90ff;
					cursor: pointer;
					font-weight: 300;
				}
			}
		}
	}

	&__loader {
		animation: spin 1s linear infinite;
		border: 4px solid #f3f3f3;
		border-bottom: 4px solid #3a3a3a;
		border-radius: 50%;
		border-right: 4px solid #3a3a3a;
		border-top: 4px solid #3a3a3a;
		height: 30px;
		width: 30px;

		@media (max-width: #{ ($break-small) }) {
			width: 20px;
			height: 20px;
		}
	}
}

@keyframes spin {

	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}
