.popup{
  position: fixed;
	top: 100%;
	left: 0;
	width: 100%;
	height : 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 999;
	transition: 0.5s ease-in-out;
	padding: 20px;
	background: rgba(0,0,0,0.5);
}
.popup.show{
  top: 0;
}
.popup-wrapper{
  padding: 40px;
	border-radius: 5px;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
	text-align: center;
	max-width: 800px;
	background: #fff;
}
.popup .language-switcher {
  width: 50%;
	margin: auto;
	margin-top: 30px;
}
.popup .language-switcher button{
  width 100%;
	background: #fff;
	border-radius: 5px;
	padding: 20px;
	border: 1px solid #c0d0de;
	width: 100%;
}
.popup .language-switcher button svg{
  transition: 0.3s ease;
}
.popup .language-switcher.open button svg{
  transform: rotate(180deg);
}
.popup .language-switcher .dropdown-wrapper{
  position: relative;
}
.popup .language-switcher .language-list{
  list-style: none;
	margin: 0;
	position: absolute;
	width: 100%;
	top: calc(100% + 10px);
	left: 0;
	background: #fff;
	padding: 20px;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
	border-radius: 5px;
	max-height: 250px;
	overflow-y: auto;
	opacity: 0;
	visibility: hidden;
	transition: 0.4s ease;
}
.popup .language-switcher.open .language-list{
  opacity: 1;
	visibility: visible;
}
.popup .language-switcher .language-list > li:not(:last-child){
  padding-bottom: 10px;
	border-bottom: 1px solid #c0d0de;
}
.popup .language-switcher .language-list > li:not(:first-child){
  padding-top: 10px;
}
.popup-wrapper{
  position: relative;
}
.close-popup{
  width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	background: #4A449B;
	position: absolute;
	top: 20px;
	right: 20px;
}
.popup-wrapper svg{
  width: 20px;
}
@media(max-width: 767px){
	.popup .language-switcher{
	  width: 100%;
	}
	.close-popup{
	  top: 10px;
		right: 10px;
	}
	.popup:has(.open){
	  align-items: flex-start;
	}
}