.rb_flex_wrap{
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}
.rb_flex_column_wrap{
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex-wrap: wrap;
}
.rb_flex_center_wrap{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}
.rb_flex_start_wrap {
	display: flex;
	justify-content: start;
	align-items: center;
	gap: 5px;
}
.rb_doctors_main_wrap{
	margin: 20px 0;
}
.rb_doctor_dates {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 8px;
	width: 100%;
	margin-bottom: 20px;	
	overflow-x: auto;
	padding-bottom:20px
}
.doctor_date_box {
	width: 100px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	flex: 0 0 100px;
	border: 2px dashed #ccc;
	border-radius: 12px;
	padding: 10px;
	cursor: pointer;
	font-size: 15px;
	white-space: nowrap;
	color: #333;
	transition: 0.2s all;
	flex-direction: column;
}
.doctor_date_box:hover, .doctor_date_box.active {
	background: var( --e-global-color-primary );
	color: #fff;
	border-color: var( --e-global-color-primary );
}
.doctor_date_box.doctor_date_box_جمعه{pointer-events:none;background:#ddd;color: #888;border-color: #ddd;}
.rb_btn {
	background: var(--e-global-color-primary );
	color: #fff;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 10px 12px;
	border-radius: 10px;
	gap: 5px;
	border: 0;
	min-width: 120px;
	min-height: 42px;
}
.rb_btn:hover {
	box-shadow: inset 0 0 100px #0003;}
}
.btn_loading {
	position: relative;
	font-size: 0 !important
}

.btn_loading::before {
	content: "";
	width: 20px;
	height: 20px;
	display: block;
	border-radius: 50%;
	border-style: solid;
	border-width: 2px;
	border-color: #00000069 #00000069 #00000069 #000;
	animation: btn_loading .8s infinite linear;
	margin-top: 3px;
	position: absolute;
}

@keyframes btn_loading {
	0% {transform: rotate(0deg)}
	100% {transform: rotate(360deg)}
}
.rb_doctors_main_wrap_title{
	font-size: 22px;
	text-align:center;
	width: 100%;
	margin-bottom: 20px;
	font-weight: 700;
	color: var( --e-global-color-primary );
}
.rb_doctor_box_image{
	width: 170px;
	height: 170px !important;
	border-radius: 500px !important;
	object-fit: cover;
}
.rb_doctor_box_content_white{
	background: #fff;
	border-radius: 12px;
	padding: 20px;
	font-size: 14px;
	color: #333;
	margin-bottom: 10px;
}
.rb_doctors_result{
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	border: 1px solid #ddd;
	border-radius: 12px;
	margin-bottom: 30px;
}
.rb_doctor_box {
	position: relative;
	flex: 0 0 calc(50% - 10px);
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 15px;

}
.rb_doctor_box_meta svg {
	fill: var(--e-global-color-primary);
	width: 14px;
	height: 14px;
}
.rb_doctor_box_meta {
	font-size: 11px;
}
.rb_doctor_box > a {
	flex: 0 0 170px;
}
.rb_doctor_box a{text-decoration: none;}
.rb_doctor_box_rate {
	display: flex;
	justify-content: center;
	width: 70px;
	position: absolute;
	left: 10px;
	top: 10px;
	gap: 2px;
	z-index: 10;
}
.rb_doctor_box_rate svg{fill: #fca311;}
.rb_doctor_box_rate svg.active{fill: #bbb;}

@media (min-width: 1400px){
	.rb_doctor_box {flex: 0 0 100;}
}


@media (max-width: 991px){
	.rb_doctor_box_rate {position: relative; left: auto;top: 0;right: 0;margin-bottom: 10px;margin-top: -5px;}
	body .rb_doctor_box > a {flex: 0 0 120px;position: absolute; left: 8px;top: 8px;}
	.rb_doctor_box_meta .rb_flex_start_wrap:first-child{max-width: 82%;}
	body .rb_doctor_box_image {width: 70px;height: 70px;}
	.rb_doctor_dates{margin-bottom: 15px;}
	.rb_doctors_result {padding: 6px;gap: 5px;margin-bottom: 10px;}
	.rb_doctor_box{flex: 100%;}
	.rb_doctor_box_content_white{padding: 6px 8px;}
	.rb_doctor_box_title{font-size: 17px !important;margin-top: 20px;max-width: 80%;margin-bottom: 0;}
	.rb_btn{min-width: 100px;min-height: 30px;padding: 8px 10px;}
	.rb_flex_column_wrap.rb_doctor_box_meta svg {width: 30px;max-width: 30px;min-width: 30px;}
	.box_white_footer{background: #eee;border-radius: 10px;padding: 5px;justify-content: center;gap: 10px;}
	.rb_doctor_box{margin-bottom: 0;}
}


