/*ERR audio app promo*/

.audio-app-promo-container {
	position: fixed;
	letter-spacing: -0.02em;
	z-index: 100;
	top: 17%;
	left: 0;
	right: 0;
	width: 90%;
	height: 200px;
	padding: 20px 10px;
	background: #000000f2;
	border-radius: 10px;
	color: white;
	text-align: center;
	font-size: 17px;
	display: none;
	justify-content: space-around;
	align-items: center;
	flex-direction: column;
	margin: 0 auto;
	box-shadow: 1px 1px 19px 3px #414141;
}

.audio-app-promo-container, .audio-app-promo-container * {
	box-sizing: unset;
}

.audio-app-promo-container a, .audio-app-promo-container a:hover, .audio-app-promo-container a:active {
	color: white;
}

.audio-app-promo-text {
	width: 75%;
	font-size: 15px;
}

.audio-app-promo-close {
	position: absolute;
	right: 6px;
	top: 6px;
	padding: 12px;
}

.audio-app-promo-close-tooltip {
	font-size: 14px;
}

.audio-app-promo-btns {
	display: flex;
	width: 100%;
	justify-content: space-between;
}

.store-btn {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 10px 12px;
	border-radius: 25px;
	width: 42%;
	cursor: pointer;
	/*box-shadow: 1px 1px 5px 1px rgb(255 255 255 / 30%);*/
	box-shadow: 0px 0px 5px 2px rgb(122 122 122 / 30%);
	margin: 0;
	font-size: 16px;
}

.play-store {
	background: url(/www/images/app/play-store-ico@2x.png) center/100% no-repeat;
	display: inline-block;
	width: 60px;
	height: 60px;
}

.app-store {
	background: url(/www/images/app/app-store-ico@2x.png) center/100% no-repeat;
	display: inline-block;
	width: 60px;
	height: 60px;
}

.er-logo {
	background: url(/www/images/app/ER_logo.svg) center/100% no-repeat;
	display: inline-block;
	width: 83px;
	height: 78px;
	float: left;
	align-self: start;
	margin-right: 10px;
}

.audio-app-banner-text-container {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 10px;
	padding: 0 10px;
}

#play-store-btn {
	background-image: linear-gradient(to bottom, rgb(181 181 181 / 59%), rgba(9, 16, 38, 0.59));
}

#app-store-btn {
	background-image: linear-gradient(to bottom, rgb(181 181 181 / 59%), rgba(9, 16, 38, 0.59));
}

.store-btn-text {
	font-size: calc(14px + (18 - 14) * ((100vw - 300px) / (1440 - 300)));
	width: 100%;
	margin-left: 5px;
}

@media (max-width: 400px) {
	.audio-app-promo-container {
		font-size: 16px;
	}

	.store-btn {
		padding: 8px 10px;
	}

	.play-store {
		width: 50px;
		height: 60px;
	}

	.app-store {
		width: 50px;
		height: 60px;
	}

	.store-btn-text {
		font-size: calc(14px + (18 - 14) * ((100vw - 300px) / (1440 - 300)));
		width: 100%;
		display: flex;
		justify-content: center;
	}
}


/*ERR audio app promo end*/