.modal_payment-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

.modal_payment-container {
	background: #fff;
	width: 600px;
	max-width: 90%;
	border-radius: 4px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	position: relative;
}

/* Header */
.modal_payment-header {
	background: #3d3d3d;
	color: #fff;
	padding: 10px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.modal_payment-header .modal_payment-logo {
	display: flex;
	align-items: center;
}

.modal_payment-header .modal_payment-logo img {
	height: 30px;
	margin-right: 10px;
}

.modal_payment-header button {
	background: transparent;
	border: none;
	color: #fff;
	font-size: 20px;
	cursor: pointer;
}

/* Steps */
.modal_payment-steps-container {
	padding: 20px;
	border-bottom: 1px solid #e3e3e3;
}

.modal_payment-steps-container h2 {
	margin: 0 0 10px 0;
	font-size: 20px;
}

.modal_payment-steps {
	display: flex;
	align-items: center;
	gap: 20px;
}

.modal_payment-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 14px;
}

.modal_payment-step-number {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #ccc;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 5px;
	font-weight: bold;
}

.modal_payment-step.active .modal_payment-step-number {
	background: #157dbc;
}

.modal_payment-step.completed .modal_payment-step-number {
	background: #4bb543;
}

.modal_payment-step-title {
	color: #333;
	text-align: center;
}

.modal_payment-steps::before,
.modal_payment-steps::after {
	content: '';
	flex: 1;
	height: 2px;
	background: #ccc;
	margin: 0 10px;
}

.modal_payment-steps > .modal_payment-step:first-child::before {
	content: none;
}

.modal_payment-steps > .modal_payment-step:last-child::after {
	content: none;
}

.modal_payment-step.active ~ .modal_payment-step .modal_payment-step-number {
	background: #ccc !important;
}

/* Content */
.modal_payment-content {
	padding: 20px;
	flex: 1;
	overflow-y: auto;
}

.modal_payment-content label {
	display: block;
	margin-bottom: 10px;
	color: #333;
	font-size: 14px;
}

.modal_payment-content input[type='text'],
.modal_payment-content input[type='email'],
.modal_payment-content input[type='password'] {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 14px;
	margin-bottom: 20px;
}

/* Footer */
.modal_payment-footer {
	padding: 20px;
	border-top: 1px solid #e3e3e3;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.modal_payment-footer .modal_payment-link {
	margin-right: auto;
	color: #157dbc;
	font-size: 14px;
	text-decoration: none;
}

.modal_payment-footer button {
	background: #fdd835;
	border: none;
	padding: 10px 20px;
	cursor: pointer;
	font-size: 14px;
	border-radius: 4px;
	font-weight: bold;
}

.modal_payment-footer button:hover {
	background: #fbc02d;
}

.hidden {
	display: none;
}

#modalShopCart .active-window-modal-shop-cart {
	background-color: #fff !important;
}

#modalShopCart .modal-general-container {
	margin-bottom: 0 !important;
	min-height: 300px !important;
}

.card {
	box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.25);
	background-color: #edeced !important;
	border-radius: 0;
}

.card-body {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}

.card-text {
	font-size: 0.8rem !important;
}

.flipswitch {
	position: relative;
	width: 70px;
}

.flipswitch input[type='checkbox'] {
	display: none;
}

.flipswitch-label {
	display: block;
	overflow: hidden;
	cursor: pointer;
	border: 1px solid #999999;
	border-radius: 0px;
	margin-bottom: 0;
	overflow: hidden;
}

.flipswitch-inner {
	width: 200%;
	margin-left: -100%;
	transition: margin 0.3s ease-in 0s;
}

.flipswitch-inner:before,
.flipswitch-inner:after {
	float: left;
	width: 50%;
	height: 22px;
	padding: 0;
	line-height: 24px;
	font-size: 18px;
	color: white;
	font-family: Trebuchet, Arial, sans-serif;
	font-weight: bold;
	box-sizing: border-box;
}

.flipswitch-inner:before {
	content: 'Yes';
	padding-left: 12px;
	background-color: #256799;
	color: #ffffff;
	font-size: 12px;
}

.flipswitch-inner:after {
	content: 'No';
	padding-right: 12px;
	background-color: #ebebeb;
	color: #888888;
	text-align: right;
	font-size: 12px;
}

.flipswitch-switch {
	width: 31px;
	/* margin: -3.5px; */
	background: #ffffff;
	border: 1px solid #999999;
	/* border-radius: 8px; */
	position: absolute;
	top: 0;
	bottom: 0;
	right: 39px;
	transition: all 0.3s ease-in 0s;
	height: 24px;
}

.flipswitch-cb:checked + .flipswitch-label .flipswitch-inner {
	margin-left: 0;
}

.flipswitch-cb:checked + .flipswitch-label .flipswitch-switch {
	right: 0;
}

.error-msg-validation {
	color: red;
	font-size: 1.1rem;
}

.additionalText {
	font-size: 12px;
	max-width: 50%;
	margin: 0 auto;
	color: #777;
}

.additionalText2{
  font-size: 14px;
	max-width: 90%;
	margin: 0 auto;
	color: #777;
  margin-top: 1.5rem;
}

.otp-title{
	font-size: 14px;
}
.otp-input {
	font-size: 2rem;
}

.info-text{
	font-size: 12px;

}

.secure-text{
	font-size: 12px;

}

.confirm-button{
	font-size: 14px !important;

}

#userMessageInput{
	width: 300px !important;
}