/***** Locale Pop Up *****/

#locale_popup{
	overflow-y: hidden;
	background-color: rgba(0, 0, 0, 0.85);
	position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease 0.1s;
}

.locale_popup_main{
	margin:0 auto;
	display:table;
	position: absolute;
	left: 0;
	right:0;
	top: 50%; 
	-webkit-transform:translateY(-50%);
	-moz-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	-o-transform:translateY(-50%);
	transform:translateY(-50%);
}

#locale_popup_body {
	background-color: rgba(255, 255, 255, 1);
	margin: auto 18px;
	height: max-content;
	transition: all 0.3s ease 0.1s;
	border-radius: 50px;
}

.locale_popup_grid {
	display: block;
}

.side_map{
	display: flex;
}

.side_map img{
	display: none;
}

.country_flag img {
    height: 15px;
}

.country_name {
	font-family: Proxima Nova, "Proxima Nova", Helvetica, Arial, sans-serif;
    font-size: 22px;
    margin-left: 18px;
    text-transform: capitalize;
    color: black;
    font-weight: 500;
}

.text_section {
	padding: 18px;
	display: flex;
    flex-direction: column;
}

.lp_main_heading{
	font-size: 30px;
    font-family: Gilroy, "Gilroy";
	font-weight: bold;
}

.user_country{
	display: flex;
	align-items: center;
	margin: 24px 0;
}

.lp_sub_heading {
    margin-bottom: 24px;
	flex-grow: 1;
}

.option_btn .button-white, .option_btn .button-red{
	width: fit-content;
	margin-bottom: 0;
	justify-content: center;
}

.option_btn {
    display: grid;
    grid-gap: 18px;
}

.continue_btn:hover {
    color: #fff !important;
}

#continue_text_2{
	margin-left: -24px;
}

.country_flag{
	border: 1px solid #ccc;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.option_btn button span{
	white-space: break-spaces;
}

@media (min-width: 768px) {

	#locale_popup_body{
		width: 750px;
		margin: auto;
	}

	.locale_text_heading {
		margin: 0 0 20px;
	}

	.locale_popup_grid {
		display: flex;
	}

	.side_map img{
		display: block;
		width: 300px;
		border-radius: 50px 0 0 50px;
	}
}

@media (min-width: 1024px) {

	.side_map img{
		width: 350px;
	}
}

@media (min-width: 1440px) {

	.lp_main_heading {
		font-size: 36px;
	}

	.country_name{
		font-size: 24px;
	}
}
  /***** End Locale Pop Up ****/