.team-members {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}
.team-member {
	background-color: rgba(255, 255, 255, .19);
	border-radius: 15px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: stretch;
}
.team-member__content {
	padding: 10px 20px 20px 20px;
	font-size: 16px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.team-member__image img {
    max-height: 450px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}
.team-member__name {
	font-size: 20px;
	color: #fff;
}
.team-member__brief {
	margin-bottom: 10px;
	line-height: 1.6;
	display: block;
	color: #fff;
}
.team-member__brief_location {
	display: flex;
	align-items: center;
	gap: 7px;
}
.team-member__brief img {
	width: 22px;
	filter: invert(1);
	
}
.member-popup__wrapper {
	display: none;
}
.team-member__phone, .team-member__email {
	display: block;
}
.member-popup__wrapper {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: all .3s ease-in-out;
}
.member-popup__wrapper.active {
	opacity: 1;
	visibility: visible;
	z-index: 1111;
	pointer-events: auto;   
}
.member-popup__overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #fff;
	opacity: .7;
}
.member-popup__container {
	display: flex;
	max-width: 1100px;
	width: 90%;
	align-items: center;
	background-color: #1f3810;
	border-radius: 20px;
	overflow: hidden;
	padding: 40px 15px 30px 30px;
	z-index: 1;
	position: relative;
}
.member-popup__name {
	margin-bottom: 10px;
    margin-top: 5px;
    font-size: 30px;
    color: #fff;
}
.team-member__titel {
    font-size: small;
    line-height: 1.7;
}
.member-popup__image {
	width: 40%;
}
.member-popup__content {
	width: 60%;
	padding-left: 30px;
	max-height: 60vh;
	overflow: auto;
	height: 100%;
	padding-right: 15px;
}
.member-popup__image img {
	border-radius: 15px;
	width: 100%;
	max-height: 60vh;
	object-fit: cover;
}
.member-popup__text {
    display: flex;
    align-items: center;
    margin-top: 5px;
    margin-bottom: 0;
}
.member-popup__more_title, .member-popup__contact_title {
    font-size: 18px;
    color: #fff;
    margin-bottom: 15px;
}
.member-popup__erbjuder_radgivning {
    margin-top: 10px;
    display: block;
}
.member-popup__personer_details {
    margin-top: 0;
    /* max-height: 20vh; */
    /* overflow: auto; */
    display: block;
    background-color: rgba(255, 255, 255, .1);
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
}
.member-popup__personer_details::-webkit-scrollbar, 
.member-popup__contact_form_textarea textarea::-webkit-scrollbar,
.member-popup__content::-webkit-scrollbar {
	width: 5px;
}
.member-popup__personer_details::-webkit-scrollbar-track, 
.member-popup__contact_form_textarea textarea::-webkit-scrollbar-track,
.member-popup__content::-webkit-scrollbar-track {
	background: transparent;
}
.member-popup__personer_details::-webkit-scrollbar-thumb, 
.member-popup__contact_form_textarea textarea::-webkit-scrollbar-thumb,
.member-popup__content::-webkit-scrollbar-thumb {
	background: rgba(255,255,255,.7);
	border-radius: 5px;
}
.member-popup__personer_details::-webkit-scrollbar-thumb:hover, 
.member-popup__contact_form_textarea textarea::-webkit-scrollbar-thumb:hover,
.member-popup__content::-webkit-scrollbar-thumb:hover {
	background: #555;
}

.member-popup__hemsidorlankar {
    display: block;
    margin-bottom: 15px;
    margin-top: 0;
}
.member-popup__hemsidorlankar a {
    display: block;
    color: #ddd;
    text-decoration: underline;
}
.member-popup__information {
    margin-top: -10px;
    margin-bottom: 10px;
}
.member-popup__details {
	margin-bottom: 20px;
}
button.member-popup__close {
	width: 30px;
	height: 30px;
	position: absolute;
	right: 10px;
	top: 10px;
	background-color: transparent;
	color: #fff;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
button.member-popup__close img {
	filter: invert(1);
}
.member-popup__content em {
	font-size: 25px;
	display: flex;
	align-items: center;
	line-height: 1;
	margin-right: 10px;
}
.team-member__details_button {
    background-color: #1f3810;
    color: #fff;
    margin-top: 10px;
}
.team-member__details_button:hover {
    background-color: #fff;
    color: #000;
}
.member-popup__contact_form_input label, .member-popup__contact_form_textarea label {
    display: none;
}
.member-popup__contact_form_input input, .member-popup__contact_form_textarea textarea {
    width: 100%;
    border-radius: 7px;
    background-color: rgba(255,255,255,.2);
    border: none;
    color: #fff;
    height: 40px;
    margin-right: 0;
    font-size: 16px;
    line-height: 1.5;
}
.member-popup__contact_form_textarea textarea {
    height: 110px;
    min-height: auto;
		display: block;
}
.member-popup__contact_form_input input::placeholder, .member-popup__contact_form_textarea textarea::placeholder {
    color: #fff;
}
.member-popup__contact_form_input input:focus::placeholder, .member-popup__contact_form_textarea textarea:focus::placeholder {
    opacity: 0;
}
.member-popup__contact_form_response {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    border-radius: 5px;
}
.member-popup__contact_form_response.success {
    background-color: #3b9d00;
}
.member-popup__contact_form_response.error {
    background-color: #8b5e3c;
}
.member-popup__contact_form_response p {
    margin-top: 15px;
    margin-bottom: 15px;
}
.member-popup__contact_form_checkbox {
    margin-bottom: 15px;
}
.member-popup__contact_form_checkbox .checkbox-group-label {
    margin-bottom: 5px;
    font-weight: 600;
}
.member-popup__contact_form_checkbox input[type="checkbox"] {
    position: relative;
    border: 2px solid #fff;
    border-radius: 4px;
    background: none;
    cursor: pointer;
    line-height: 0;
    margin: 0 5px 0 0;
    outline: 0;
    padding: 0 !important;
    vertical-align: text-top;
    height: 20px;
    width: 20px;
    -webkit-appearance: none;
    opacity: .7;
    min-height: 0;
    min-width: 0;
}
.member-popup__contact_form_checkbox input[type="checkbox"]::before {
    content: '';
    position: absolute;
    right: 50%;
    top: 50%;
    width: 4px;
    height: 10px;
    border: solid #FFF;
    border-width: 0 2px 2px 0;
    margin: -1px -1px 0 -1px;
    transform: rotate(45deg) translate(-50%, -50%);
    z-index: 2;
    opacity: 0;
}
.member-popup__contact_form_checkbox input[type="checkbox"]:checked {
    background-color: rgba(255,255,255,.2);
    opacity: 1;
}
.member-popup__contact_form_checkbox input[type="checkbox"]:checked::before {
    opacity: 1;
}
.member-popup__contact_form_checkbox label {
    cursor: pointer;
    font-size: 16px;
}
.member-popup__contact_form_recaptcha {
    margin: 10px 0;
}
.member-popup__contact_form_button {
    font-size: 15px;
}
.team-member__contact_email, .team-member__contact_phone {
    display: flex;
    font-size: 16px;
    margin-bottom: 10px;
    gap: 10px;
    align-items: center;
    line-height: 1;
	color: #fff;
}
.team-member__contact_email img, .team-member__contact_phone img {
    width: 20px;
	filter: invert(1);
}
.member-popup__contact_details {
    margin-bottom: 20px;
}

.plock_loading_wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 5;
}
.plock_lds-dual-ring {
  display: inline-block;
  width: 80px;
  height: 80px;
}
.plock_lds-dual-ring:after {
  content: '';
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #fff;
  border-color: #fff transparent #fff transparent;
  animation: plock_lds-dual-ring 1.2s linear infinite;
}

@keyframes plock_lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}



body.overflow-hidden {
    overflow: hidden;
}

@media screen and (max-width: 1024px) {
	.team-members {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media screen and (max-width: 767px) {
	.team-members {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.member-popup__container {
		padding: 30px 10px 20px 15px;
		flex-wrap: wrap;
	}
	.member-popup__content {
	    max-height: 35vh;
        overflow: auto;
	}
	.member-popup__content::-webkit-scrollbar {
    	width: 5px;
    }
    .member-popup__content::-webkit-scrollbar-track {
    	background: transparent;
    }
    .member-popup__content::-webkit-scrollbar-thumb {
    	background: rgba(255,255,255,.7);
    	border-radius: 5px;
    }
    .member-popup__content::-webkit-scrollbar-thumb:hover {
    	background: #555;
    }
	.member-popup__content {
		padding-left: 0;
		width: 100%;
		padding-top: 15px;
		padding-right: 5px;
	}
	.member-popup__image {
		width: 100%;
	}
	.member-popup__image img {
		height: 250px;
		object-fit: cover;
		width: 100%;
		object-position: center;
	}
	.member-popup__designation {
		margin-bottom: 0;
		font-size: 16px;
	}
	.member-popup__details {
		font-size: 16px;
		line-height: 1.6;
		margin-bottom: 10px;
	}
	.member-popup__title {
		margin-bottom: 5px;
	}
	.member-popup__phone, .member-popup__email {
		font-size: 16px;
		margin-top: 0;
	}
	button.member-popup__close {
		top: 2px;
		right: 3px;
	}
	.member-popup__personer_details {
        max-height: 100%;
    }
}

@media screen and (max-width: 500px) {
	.team-members {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
	.member-popup__image img {
		height: 300px;
	}
}