.bx-im-content-openlines__container {
	left: 0;
	top: 0;
	display: flex;
	width: 100%;
	height: 100%;
	position: relative;
}

.bx-im-content-openlines__iframe {
	border: none;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

.bx-im-content-openlines__loader {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: #fff;
}

.bx-im-content-openlines__loader_spinner {
	width: 120px;
	height: 120px;

	opacity: 0.2;
	border-radius: 50%;
	border-top: 5px solid #00ACE3;
	border-right: 5px solid #00ACE3;
	border-bottom: 5px solid #00ACE3;
	border-left: 5px solid transparent;
	animation: spinner-animation 1s infinite linear;
}

@keyframes spinner-animation {
	to {
		transform: rotate(1turn)
	}
}