html,
body,
#app {
	margin: 0 auto;
	padding: 0;
	background: var(--white);
	height: 100%;
	width: var(--app-width);
	max-width: 100vw;
}
@media (min-width: 1023px) {
	html,
	body,
	#app {
		background: var(--main-bg-color);
	}
}
.app-loader {
	margin: 0 auto 0 auto;
	display: table;
	text-align: center;
	padding-top: 35vh;
}
.app-loader-animation {
	width: 200px;
	height: 5px;
	background: linear-gradient(to right, var(--light-gray), var(--light-gray));
	background-color: var(--main-bg-color);
	margin: auto;
	border-radius: 10px;
	background-size: 20%;
	background-repeat: repeat-y;
	background-position: -25% 0;
	animation: scroll 1.2s ease-in-out infinite;
	margin-top: 20px;
}

@keyframes scroll {
	50% {
		background-size: 80%;
	}
	100% {
		background-position: 125% 0;
	}
}

.country-choice {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}
.country-choice__choice {
	display: flex;
	justify-content: space-between;
}
.country-choice__checkbox {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.country-choice__checkmark {
	position: absolute;
	top: -12px;
	left: 0;
	height: 25px;
	width: 25px;
	border-radius: 4px;
	background-color: var(--light-gray);
}
.country-choice__checkmark::after {
	left: 9px;
	top: 5px;
	width: 5px;
	height: 10px;
	border: solid var(--white);
	border-width: 0 3px 3px 0;
	transform: rotate(45deg);
	content: "";
	position: absolute;
	display: none;
}
.country-choice__container {
	padding: 0 18px;
}
.country-choice__list {
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
	padding: 10px 5px;
}
.country-choice__list.selected {
	background-color: var(--light-gray);
}
.country-choice__left {
	width: 90%;
	display: flex;
	align-items: center;
	padding-left: 10px;
}
.country-choice__right {
	width: 10%;
	position: relative;
	display: block;
	cursor: none;
}
.country-choice__right input:checked ~ .country-choice__checkmark {
	background-color: var(--green);
}
.country-choice__right input:checked ~ .country-choice__checkmark::after {
	display: block;
}
.country-choice__top {
	padding: 0 15px;
}
.country-choice__name {
	margin-left: 25px;
}
.country-choice__link {
	text-decoration: none;
	color: var(--green);
	text-transform: capitalize;
	cursor: pointer;
}
.country-choice__button {
	text-decoration: none;
	box-sizing: border-box;
	color: var(--black);
	background: var(--green);
	display: block;
	width: 100%;
	padding: 10px 15px;
	border: none;
	margin: 0;
	margin-bottom: 20px;
	margin-top: 15px;
	font-size: var(--font-medium);
	cursor: pointer;
	font-weight: var(--font-weight-medium);
}
