.topLawyers {
	overflow: hidden;
	/* margin-bottom: 10px; */
	position: relative;
	width: 100%;
	height: 0;
	transition: height ease .2s;
	min-height: 250px;

}
.topLawyers *{
	user-select: none;
	text-decoration: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-text-size-adjust: none;
}
.topLawyers .btn_xs{
	padding: 5px 8px;
}
.topLawyers--mobile{
	position: relative;
	-webkit-overflow-scrolling: touch;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.topLawyers--mobile::-webkit-scrollbar { width: 0; }

.topLawyers__arrow{
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	cursor: pointer;
	top: 50%;
	transform: translate(0, -50%);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #ffffff9f;
	z-index: 10;
	border: 1px solid #D7DDF4	;
	transition: background-color ease .2s;
	transition: opacity ease .2s;
	outline: none;

}
.topLawyers__arrow:focus{
	outline: none;
}
.topLawyers__arrow:hover{
	background: #ffffff;
}
.topLawyers__arrow--right{
	right: 10px;
	left: auto;
}
.topLawyers__arrow--left{
	left: 10px;
	visibility: hidden;
}
.topLawyers__arrow--left svg{
	transform: rotate(180DEG);
}
.topLawyers__arrow svg{
	width: 30px;
	height: 30px;
	fill: #ffa101;
}
.topLawyers__close{
	position: absolute;
/*	right: 0;
	top: 0;*/
	font-size: 12px;
	color: #7dc4fd;
	cursor: pointer;
	right:20px; 
	top:10px;
}

.topLawyers__list{
	display: flex;
	padding: 5px 0 5px 5px;
	transition: transform ease .5s;
	position: absolute;
	top: 0;
	left: 0;
}
.topLawyers__list .btn_orange {
	color: black;
	font-weight: bold;
}
.topLawyers__list .btn_orange:hover {
    background: #ffb330;

}


.topLawyer{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-radius: 16px;
	cursor: pointer;
	background: rgb(234, 250, 255);
	min-width: 150px;
	overflow: hidden;
	height: max-content;
	text-decoration: none;
	box-shadow: 0px 0px 4px rgba(0, 28, 73, 0.2);
	transition: box-shadow ease .2s;
	position: relative;
	border: 1px solid #999;
	width:auto;
	
}

@media (max-width: 600px){
	.topLawyer{
		width:49%;
	}
}

.topLawyer--search{
	background: white;
	font-size: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	height: auto;
}

.topLawyer + .topLawyer{
	margin-left: 10px;
}
.topLawyer:hover .topLawyer__photo{
	transform: scale(1.05);
}
.topLawyer:hover {
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);

}
.topLawyer:hover .topLawyer__name{
	color: #ffa101;
}
.topLawyer__photo{
	width: 100%;
	min-height:153px;
	z-index: 2;
	transition: transform ease .2s;
}
.topLawyer__info{
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	color: white;
	padding: 25px 10px 10px 10px;
	width: 100%;
	background: rgb(179,175,185);
	background: linear-gradient(0deg, #063965 0%, #155f9e 84%, #1e7aca00 100%);
	margin-top: -25px;
}
.topLawyer__job{
	font-size: 12px;
	max-width:130px; 
	overflow: hidden; 
	text-overflow: ellipsis; 
	white-space: nowrap;
}
.topLawyer__country{
	position: absolute;
	width: 30px;
	z-index: 3;
	top: 10px;
	left: 10px;
	border-radius: 3px;
	overflow: hidden;
}
.topLawyer__status{
	position: absolute;
	top: 0px;
	right: 10px;
}
.topLawyer__status.online{
	padding: 2px 5px;
	background: green;
	color: white;
	border-radius: 5px;
}
.topLawyer__name{

	margin-bottom: 5px;
	font-weight: 700;
	white-space: nowrap;
	width: 133px;
	text-overflow: ellipsis;
	overflow-x: hidden;
	text-align: center;
	margin-top:5px;
}


.topLawyer__feedbacks{
	display: flex;
	align-items: center;
}
.topLawyer__feedbacksTotal{
	font-size: 17px;
    font-weight: bold;
    width: 30px;
    color: #b16e1a;
    height: 30px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.topLawyer__feedbacksTitle{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
    margin-right: 10px;
	white-space: nowrap;
}



.topLawyer__searchIcon{
	fill:#ffa101;
	width: 40px;
	height: 40px;
	margin-bottom: 10px;
	transition: transform ease .2s;
}
.topLawyer__likeIcon{
	fill:#ffa101;
	width: 20px;
	height: 20px;
	margin-right: 5px;
}
.topLawyer--search:hover{
	color: black;
}
.topLawyer--search:hover .topLawyer__searchIcon{
	transform: scale(1.1);
}

@keyframes topLawyersListAnim {
	from {transform: translate(0, 0)}
	50% {transform: translate(-150px, 0)}
	to {transform: translate(0, 0)}
}

.topLawyersList--anim{
	animation: topLawyersListAnim 1s 1 ease;
}

.onlineServices__list{
	column-count: 3;
	overflow: hidden; /* Fix for firefox and IE 10-11  */
	break-inside: avoid-column;
}

.onlineServices__item{
	display: flex;
	justify-content: space-between;
	margin-bottom: 5px;
	break-inside: avoid-column;
}
.onlineServices__item a{
	display: grid;
}
@media (max-width: 600px){
	.onlineServices__list{
		column-count: 1;
	}

	.onlineServices__item{
		display: flex;
		justify-content: space-between;
		margin-bottom: 5px;
	}
}