:root {
	--mc: #da1c5c;
	--sc: #6456a4;
	--br: 12px;
}
.rb_flex_start_wrap{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
}
.rb_flex_end_wrap{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 10px;
}
.rb_flex_wrap{
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}
.rb_flex_column_wrap{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction:column;
}
.rb_flex_center_wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}
.rb_overlay {
	position: fixed;
	background: #0000005e;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	visibility: hidden;
	transition: .3s linear;
	z-index: 9998;
}
.popup_wrap_content p {
	margin-bottom: 10px;
}
.popup_wrap{
	position: fixed;
	background: #fff;
	width: 80%;
	max-width: 400px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: var(--br);
	padding: 30px;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s linear;
	z-index: 9999;
}
.rb_overlay.active, .popup_wrap.active {
	opacity: 1;
	visibility: visible
}
input[name="user_otp"]{text-align:center;font-size:17px;font-weight: 700;color: #000;}
.rb_alert {
  border: 1px dashed red;
  background: #fff3f3;
  color: red;
  text-align: center;
  border-radius: 50px;
  margin: 10px auto;
  font-size: 15px;
  display: inline-flex;
  width: 100%;
  justify-content: center;
  padding: 5px 0;
}
.popup_wrap_header {
	padding-bottom: 8px;
	border-bottom: 1px solid #ddd;
	margin-bottom: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}
.popup_wrap .popup_close_btn{
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.popup_wrap_header .popup_wrap_header_title {
	position: relative;
	font-size: 18px;
	width: fit-content;
	font-weight: 700;
	z-index: 2;
	display: inline-block;
}
.popup_wrap_content {
	font-size: 14px;
	font-weight: 400;
	color: #52525B;
}
.rb_btn{
	width: fit-content;
	min-width: 110px;
	min-height: 44px;
	padding: 10px 15px;
	color: #fff;
	font-size: 15px;
	white-space: nowrap;
	font-weight: 700;
	border-radius: var(--br);
	box-shadow: 1.5px 1.5px 0px 0px #0000001A !important;
	background: var(--mc);
	cursor: pointer !important;
	outline: 0;
	border: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}
.rb_btn:hover {
	box-shadow: inset 0 0 100px #0003 !important;
	color: #fff !important;
}
.btn_loading {
	position: relative;
	font-size: 0 !important
}
.btn_loading svg{opacity:0;visibility: hidden;}
.btn_loading::before {
	content: "";
	width: 20px;
	height: 20px;
	display: block;
	border-radius: 50%;
	border-style: solid;
	border-width: 2px;
	border-color: #fff #fff #fff transparent;
	animation: btn_loading .8s infinite linear
}
@keyframes btn_loading {
	0% {transform: rotate(0deg);}
	100% {transform: rotate(360deg);}
}
.form_group {
	margin-bottom: 10px;
}
.form_group .form-control {
	font-size: 15px;
	padding: 10px 15px;
	color: #333 !important;
	border: 1px solid #ddd !important;
}
.form-control {
	border-color: #ddd;
}
.form-control.require_field {
	border-color: #e80000 !important;
}
.rb_btn.signup_form_btn {
	margin: auto;
}