body.spiner {
	overflow: hidden;
}
body .spiner {
	display: none;
}
body.spiner .spiner {
	width: 100vw;
	height: calc(100vh + 138px);
	background-color: rgba(255, 255, 255, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: -138px;
	z-index: 9999;
}
body.spiner .spiner img {
	animation: 1s linear infinite rotate;
	opacity: .5;
}

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}
	
	to {
		transform: rotate(360deg);
	}
}

main.store-unset {
	margin-top: 48px;
}
.container__store-unset {
	border-radius: 5px;
	border: 1px solid silver;
	width: calc(100% - 64px );
	margin: 16px;
	min-width: unset;
	padding: 0 16px 16px;
}
.store-unset__btns {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.store-unset__btn {
	border: 2px solid #ED691F;
	border-radius: 3px;
	padding: 10px 35px;
	color: #B3BDCA;
	min-width: 75px;
}
main.store-unset .select-city__text-text {
	color: #ED691F;
}
.store-unset__btn {
	cursor: pointer;
}
.select-city__logo {
	margin-bottom: 30px;
}