@charset "utf-8";
/* CSS Document */
html, body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	font-family: "Outfit", sans-serif;
}
body::-webkit-scrollbar-track {
 -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
 border-radius: 10px;
 background-color: #F5F5F5;
}
body::-webkit-scrollbar {
 width: 3px;
 background-color: #F5F5F5;
}
 body::-webkit-scrollbar-thumb {
 background-color: #666;
}
h1, h2, h3, h4, h5, h6, p, ul, ol {
	margin: 0;
	padding: 0
}
a, button {
	text-decoration: none;
	transition: ease-in 0.3s;
	-moz-transition: ease-in 0.3s;
	-webkit-transition: ease-in 0.3s;
	-ms-transition: ease-in 0.3s;
	-o-transition: ease-in 0.3s;
}
img {
	max-width: 100%
}
/* CSS Document */

/* CSS header */

.header-main-wrap {
	position: relative;
}
.top-header-wrap {
	border-bottom: 1px solid #E3E3E3;
	padding: 8px 0;
	border-top: 3px solid #bbde1a;
}
.top-header-wrap .row {
	align-items: center;
}
.site-logo-wrap img {
	width: 65px;
}
.logo-right-head {
	text-align: right;
}
.logo-right-head img {
	width: 150px;
}
.header-nav-wrap ul {
	list-style: none;
	display: flex;
	gap: 15px;
	margin-left: -15px
}
.header-nav-wrap ul li a {
	display: block;
	padding: 15px 28px;
	color: #000;
	font-size: 15px;
	font-weight: 400;
	position: relative;
}
.header-nav-wrap ul li a:hover {
	color: #008755
}
.header-nav-wrap ul li a img {
	margin-left: 5px;
	position: relative;
	top: -1px;
}
/* CSS header */

/* CSS hero */

.hero-main-wrap {
	background: #008755;
	background-size: cover;
	padding: 25px 0;
}
.hero-main-wrap h1 {
	color: #fff;
	font-weight: 500;
	font-size: 36px;
	text-align: center;
}
/* CSS hero */

/* CSS content */


.content-step-wraper {
	background: url(../images/bg-content.jpg) no-repeat top;
	background-size: cover;
	padding: 30px 0 60px 0
}
.steps {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2rem;
	position: relative;
}
.step-button {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: none;
	background-color: var(--prm-gray);
	transition: .4s;
}
.step-button[aria-expanded="true"] {
	width: 60px;
	height: 60px;
	background-color: var(--prm-color);
	color: #fff;
}
.done {
	background-color: var(--prm-color);
	color: #fff;
}
.step-item {
	z-index: 10;
	text-align: center;
}
#progress {
	position: absolute;
	width: 95%;
	z-index: 5;
	height: 10px;
	margin-left: 18px;
	margin-bottom: 18px;
}

/* to customize progress bar */
#progress::-webkit-progress-value {
 background-color: var(--prm-color);
 transition: .2s ease;
}
 #progress::-webkit-progress-bar {
 background-color: var(--prm-gray);
}
.content-step-wraper .nav-tabs {
	border: none;
	align-items: center;
	justify-content: center;
	gap: 125px;
}
.content-step-wraper .nav-tabs li {
	position: relative;
}
.content-step-wraper .nav-tabs li:before {
	content: "";
	position: absolute;
	right: 0;
	background: url(../images/arrow-tab-1.svg) no-repeat top;
	width: 131px;
	height: 15px;
	background-size: contain;
	left: 175px;
	top: 44px;
	z-index: 111;
	opacity: 0.2
}
.content-step-wraper .nav-tabs li:nth-child(2):before {
	left: 155px !important;
}
.content-step-wraper .nav-tabs li:nth-child(3):before {
	left: 132px !important;
	width: 122px !important;
}
.content-step-wraper .nav-tabs li:nth-child(4):before {
	display: none;
}
.content-step-wraper .nav-tabs li:nth-child(4) a span {
	padding-top: 28px;
}
.content-step-wraper .nav-tabs li span {
	opacity: 0.2;
	border: none;
}
.content-step-wraper .nav-tabs li a {
	border: none;
}
.content-step-wraper .nav-tabs li {
	text-align: center;
}
.content-step-wraper .nav-tabs li a span {
	border: 3.5px solid #008755;
	display: inline-block;
	width: 90px;
	height: 90px;
	border-radius: 50%;
	text-align: center;
	margin: 0 auto;
	margin-bottom: 20px;
	padding-top: 20px;
	position: relative
}
.content-step-wraper .nav-tabs li a span:before {
	content: "";
	background: url(../images/tab-smile.png) no-repeat top;
	background-size: contain;
	position: absolute;
	bottom: -23px;
	width: 118px;
	height: 43px;
	left: -16px;
	right: 0;
	filter: brightness(0%);
	opacity: 0.5
}
.content-step-wraper .nav-tabs li:nth-child(2) a span {
	padding-top: 22px;
}
.content-step-wraper .nav-tabs li:nth-child(3) a span {
	padding-top: 28px;
}
.content-step-wraper .nav-tabs li a strong {
	display: block;
	font-weight: 300;
	color: #000000
}
.nav-tabs .nav-item.show .nav-link strong, .nav-tabs .nav-link.active strong {
	border: none;
	color: #000;
	font-weight: 400;
}
.nav-tabs .nav-item.show .nav-link span, .nav-tabs .nav-link.active span {
	opacity: 1;
}
.nav-tabs .nav-item.show .nav-link span:before, .nav-tabs .nav-link.active span:before {
	filter: none !important;
	opacity: 1;
}
.tab-content {
	width: 90%;
	margin: 0 auto;
	border: 1px solid #e8e8e8;
	padding: 25px 25px 25px 25px;
	border-radius: 15px;
	margin-top: 30px;
	background: #fff;
}
.company-information-wrap h2 {
	font-size: 25px;
	color: #000;
	font-weight: 500;
	margin-bottom: 20px;
	position: relative
}
.company-information-wrap h2 a {
	background: #008755;
	padding: 8px 12px;
	color: #fff;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 400;
	position: absolute;
	right: 0;
	top: 0;
}
.company-information-wrap h2 a:hover {
	background: #BBDE1A;
	color: #000;
}
.company-information-wrap h2 a:hover img {
	filter: brightness(0%);
}
.company-information-wrap h2 a img {
	margin-right: 5px;
	position: relative;
	top: -1px;
}
.company-information-wrap .form-group {
	margin-bottom: 15px;
	position: relative;
}
.company-information-wrap .form-group label {
	font-size: 14px;
	font-weight: 300;
	margin-bottom: 3px;
	color: #000000
}
.company-information-wrap .form-group {
	margin-bottom: 15px;
}
.company-information-wrap .form-group .form-control {
	height: 45px;
	border: none;
	outline: none;
	box-shadow: 0px 10px 15px 0 #f5f5f5;
	border-radius: 8px;
	background-color: #fff;
	font-size: 14px;
	border: 1px solid #CEF4E5;
	font-weight: 300;
	color: #666;
	padding-left: 15px
}
.company-information-wrap .form-group .form-control:focus {
	box-shadow: none;
	border: 1px solid #BBDE1A;
	background: #fff;
}
.company-information-wrap .form-group .form-select {
	height: 45px;
	border: none;
	outline: none;
	box-shadow: 0px 10px 15px 0 #f5f5f5;
	border-radius: 8px;
	background-color: #fff;
	border: 1px solid #CEF4E5;
	font-size: 14px;
	font-weight: 300;
	color: #666;
	padding-left: 15px
}
.company-information-wrap .form-group .form-select:focus {
	box-shadow: none;
	background-color: #fff;
	border: 1px solid #BBDE1A
}
.company-information-wrap .input-group-country-code {
	box-shadow: 0px 10px 15px 0 #f5f5f5;
	border-radius: 8px;
}
.company-information-wrap .input-group-country-code .input-group-text {
	height: 45px;
	border: 1px solid #CEF4E5;
	border-right: none;
	border-radius: 8px 0 0 8px;
	background-color: #fff;
	font-size: 14px;
	font-weight: 300;
	color: #666;
}
.company-information-wrap .input-group-country-code .form-control {
	border-radius: 0 8px 8px 0;
	border-left: none;
}
.company-information-wrap .input-group-country-code .form-control:focus {
	border-left: none;
}
.company-information-wrap .input-group-country-code:focus-within .input-group-text {
	border-color: #BBDE1A;
}
.company-information-wrap .input-group-country-code:has(.form-control.is-invalid) .input-group-text,
.company-information-wrap .input-group-country-code:has(.form-control.is-invalid) .form-control {
	border-color: #dc3545;
}
.company-information-wrap .input-group-country-code:has(.form-control.is-invalid) .form-control {
	border-left: 1px solid #dc3545;
}
.text-control {
	border: none;
	outline: none;
	box-shadow: 0px 10px 15px 0 #f5f5f5;
	border-radius: 8px;
	background-color: #fff;
	border: 1px solid #CEF4E5;
	font-size: 14px;
	font-weight: 300;
	color: #666;
	padding-left: 15px;
	width: 100%;
	padding-top: 15px;
	border: 1px solid #EFEFEF;
	resize: none;
}
.text-control:focus {
	box-shadow: none;
	border: 1px solid #BBDE1A;
	background: #fff;
}
.file-upload-btn {
	width: 100%;
	margin: 0;
	color: #fff;
	background: #1FB264;
	border: none;
	padding: 10px;
	border-radius: 4px;
	border-bottom: 4px solid #15824B;
	transition: all .2s ease;
	outline: none;
	text-transform: uppercase;
	font-weight: 700;
}
.file-upload-btn:hover {
	background: #1AA059;
	color: #ffffff;
	transition: all .2s ease;
	cursor: pointer;
}
.file-upload-btn:active {
	border: 0;
	transition: all .2s ease;
}
.file-upload-content {
	display: none;
	text-align: center;
}
.file-upload-input {
	position: absolute;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	outline: none;
	opacity: 0;
	cursor: pointer;
}
.image-upload-wrap {
	border: 1px dashed #B2E9D4;
	position: relative;
	background: #fff;
	border-radius: 8px;
	padding: 30px 0;
	box-shadow: 0px 10px 15px 0 #f5f5f5;
}
.image-upload-wrap:hover {
	border: 1px solid #BBDE1A;
	box-shadow: none;
}
.image-upload-wrap .image-title-wrap {
	padding: 0 15px 15px 15px;
	color: #222;
}
.drag-text {
	text-align: center;
}
.drag-text h3 {
	font-weight: 400;
	font-size: 18px;
	color: #000;
	padding: 5px 0;
}
.drag-text span {
	display: block;
	font-size: 14px;
	font-weight: 300;
	color: #000;
	opacity: 0.5
}
.file-upload-image {
	max-height: 200px;
	max-width: 200px;
	margin: auto;
	padding: 20px 20px 0 20px;
}
.remove-image {
	margin: 0;
	color: #000;
	border: none;
	border-radius: 0;
	border-bottom: 2px solid #b02818;
	transition: all .2s ease;
	outline: none;
	font-weight: 400;
	background: none;
}
.image-upload-icon {
	width: 50px;
	margin: 0 auto;
	margin-bottom: 5px;
}
.nav-tabs .nav-link {
	position: relative;
}
.nav-tabs .nav-link.active:before {
	content: "";
	background: url(../images/arrow-tab.svg) no-repeat top;
	background-size: contain;
	width: 30px;
	height: 15px;
	position: absolute;
	bottom: -30px;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.btn-contine-wrap {
	text-align: right;
}
.btn-contine-wrap {
	margin-top: 20px;
}
.btn-contine-wrap a {
	background: #BBDE1A;
	border: none;
	outline: none;
	padding: 12px 20px;
	color: #000;
	font-size: 14px;
	font-weight: 400;
	border-radius: 8px;
}
.btn-contine-wrap a img {
	margin-left: 5px !important;
	position: relative;
	top: -1px
}
.btn-contine-wrap a:hover {
	background: #008755;
	color: #fff !important;
}
.btn-contine-wrap a:hover img {
	filter: brightness(0) invert(1) !important;
}
.content {
	display: none; /* Hidden by default */
}
#toggleBtn {
	margin-top: 10px;
	width: 100%;
	background: #fff;
	color: #000;
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 10px;
	border: none;
	outline: none;
	height: 50px;
	box-shadow: 0px 10px 15px 0 #f5f5f5;
	border: 1px dashed #B2E9D4;
	border-radius: 6px;
}
#toggleBtn:hover {
	box-shadow: none;
	border: 1px dashed #BBDE1A;
}
.back-step-btn {
	margin-top: 10px;
}
.back-step-btn button {
	background: #008755;
	border: none;
	outline: none;
	padding: 12px 20px;
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	border-radius: 8px;
}
.back-step-btn button img {
	position: relative;
	top: -1.5px;
}
form-list-help-wrp .back-step-btn button img {
	margin-right: 5px;
}
.back-step-btn button:hover {
	background: #BBDE1A;
	color: #000;
}
.back-step-btn button:hover img {
	filter: brightness(0%);
}
.delet-btn {
	position: absolute;
	right: -14px;
	top: 34px;
	background: none;
	border: none;
	outline: none;
}
.no-label-group .delet-btn {
	top: 6px;
}
.swithc-btn {
	position: absolute;
	right: 0;
	top: 0;
}
.switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 34px;
}
/* Hide default checkbox */
.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}
/* Slider style */
.slider {
	position: absolute;
	cursor: pointer;
	background-color: #ccc;
	border-radius: 34px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: 0.3s;
}
.slider::before {
	position: absolute;
	content: "";
	height: 26px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	border-radius: 50%;
	transition: 0.3s;
}
/* When checked */
input:checked + .slider {
	background-color: #bbde1a;
}
input:checked + .slider::before {
	transform: translateX(26px);
}
/* Optional text label */
.label-text {
	margin-left: 10px;
	font-size: 16px;
	color: #333;
}
.add-branch-btn a {
	margin-top: 10px;
	width: 100%;
	background: #fff;
	color: #000;
	font-size: 18px;
	font-weight: 300;
	margin-bottom: 10px;
	text-align: left;
	padding-left: 15px;
	border: none;
	outline: none;
	padding: 15px;
	box-shadow: 0px 10px 15px 0 #f5f5f5;
	border: 1px dashed #B2E9D4;
	border-radius: 6px;
	display: block;
}
.add-branch-btn a:hover {
	border: 1px dashed #BBDE1A;
	box-shadow: none;
}
.add-branch-btn a img {
	position: relative;
	top: -2px;
}
.add-branch-modal-wrap .modal-dialog {
	max-width: 800px;
}
.modal-content {
	border-radius: 20px;
	border: none;
	padding: 10px;
}
.btn-close {
	position: absolute;
	top: 8px;
	right: 8px;
	box-shadow: none;
}
.form-branch-wraper h2 {
	font-size: 25px;
	margin-bottom: 15px;
}
.modal {
	backdrop-filter: blur(4px);
}
.thanks-modal-wraper .modal-dialog {
	max-width: 400px;
	margin-top: 10%
}
.thanks-modal-wraper .thankyou-modal-icon {
	text-align: center;
	margin-top: -90px;
	margin-bottom: 15px
}
.thankyou-modal-wraper {
	text-align: center;
}
.thankyou-modal-wraper h5 {
	margin-bottom: 10px;
}
.thankyou-modal-wraper p {
	font-size: 16px;
	font-weight: 300;
	padding: 0 25px;
	padding-bottom: 23px;
}
.thankyou-modal-wraper a {
	background: #BBDE1A;
	border: none;
	outline: none;
	padding: 12px 20px;
	color: #000;
	font-size: 14px;
	font-weight: 400;
	border-radius: 8px;
}
.thankyou-modal-wraper a img {
	margin-left: 5px;
	position: relative;
	top: -2px;
}
.thankyou-modal-wraper .btn-thankyou-wrap {
	margin-bottom: 15px;
}
.pdf-btn-wrp a {
	display: block;
	background: #E0F7EE;
	height: 100%;
	text-align: center;
	padding: 15px 0px;
	color: #000
}
.pdf-btn-wrp a .pdf {
	margin-right: 5px;
}
.arrow {
	margin-left: 5px;
	position: relative;
	top: -1px;
}
.pdf-btn-wrp a:hover {
	background: #C6EDDE;
}
.right-btn-nav-wrap ul {
	list-style: none;
	display: flex;
	gap: 15px;
	justify-content: end;
	align-items: center;
}
.right-btn-nav-wrap ul li a {
	display: block;
	padding: 8px 20px;
	border: 1px solid #ccc;
	border-radius: 8px;
	color: #000;
}
.become-partner-btn {
	background: #BBDE1A !important;
	border: 1px solid #BBDE1A !important
}
.right-btn-nav-wrap ul li a:hover {
	background: #008755 !important;
	border: 1px solid #008755 !important;
	color: #fff
}
.right-btn-nav-wrap ul li a:hover img {
	filter: brightness(0) invert(1);
}
.right-btn-nav-wrap ul li:nth-child(2) img {
	position: relative;
	top: -2px;
}
/* CSS content */

/* CSS footer */

.footer-main-wraper {
	background: #fff;
}
.footer-main-wraper .logo-info-wrp ul {
	list-style: none;
	display: flex;
	gap: 25px;
	border-right: 1px solid #E5E5E5;
	padding: 25px 0;
	justify-content: center;
	align-items: center;
}
.footer-main-wraper .logo-info-wrp ul li img {
	width: 90px;
}
.footer-contenct-wraper {
	padding-top: 27px
}
.footer-links {
	padding: 5px 0;
}
.footer-contenct-wraper .footer-links a {
	margin-right: 15px;
	border-bottom: 1px solid #ccc;
	font-weight: 300;
	color: #616161
}
.footer-contenct-wraper .footer-links a:hover {
	color: #000;
}
.download-app-wrap {
	list-style: none;
	border-left: 1px solid #E5E5E5;
	padding: 17px 25px;
	justify-content: center;
	align-items: center;
}
.download-app-wrap span {
	font-size: 16px;
	color: #000;
	display: block;
	margin-bottom: 10px;
	font-weight: 400;
}
.app-download-wrap ul {
	list-style: none;
	display: flex;
	gap: 8px
}
.app-download-wrap ul li {
	width: 50%;
}
.app-download-wrap ul li:nth-child(1) {
	width: 30.2%
}
.badge-wrap {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #008755;
	position: absolute;
	top: -5px;
	right: -5px;
	padding-top: 3px;
	color: #003622;
}
.nav-tabs .nav-item.show .nav-link span, .nav-tabs .nav-link.active span .badge-wrap {
	background: #BBDE1A !important;
}
.app-download-wrap ul li a {
	display: block;
	margin-bottom: 5px;
}

.content-application-wraper .nav-tabs li:nth-child(1) a span {
	padding-top: 26px;
}

.content-application-wraper li:nth-child(3):before {
	left: 137px !important;
	width: 131px !important;
	display: none;
}
.content-application-wraper .nav-tabs li:nth-child(3) a span {
	padding-top: 26px;
}
.request-submit-wrap {
	background: #D9FCEF;
	border: 1px solid #8BE1C1;
	padding: 25px;
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.request-submit-wrap .approve-icon-wrp {
	width: 11%;
	text-align: center;
}
.approve-icon-wrp img {
	width: 90px;
}
.content-application-wrap {
	padding-left: 25px;
}
.content-application-wrap h5 {
	font-weight: 400;
	font-size: 18px;
	margin-bottom: 8px
}
.content-application-wrap p {
	font-weight: 300;
	font-size: 16px;
	color: #000;
	padding-right: 100px;
	line-height: 21px;
}
.company-information-wrap {
	padding: 20px 0 0 0
}
.company-information-wrap h3 {
	font-size: 20px;
	margin-bottom: 20px;
}
.company-information-wrap .company-info-text {
	box-shadow: 0px 0px 15px 0 #f5f5f5;
	border-radius: 8px;
	background-color: #fff;
	padding: 20px;
	display: flex;
	gap: 25px;
	align-items: center;
}
.comapany-logo-wrap {
	width: 8%;
	border: 1px solid #ddd;
	border-radius: 8px;
	overflow: hidden;
}
.comapany-logo-text h4 {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 10px;
}
.info-company ul {
	list-style: none;
	display: flex;
	gap: 25px;
	align-items: center;
}
.info-company ul li {
	font-size: 16px;
	font-weight: 300;
	color: #000;
	opacity: 0.8
}
.info-company ul li img {
	width: 20px;
	margin-right: 2px;
	position: relative;
	top: -2px
}
.info-company ul li:nth-child(1) img {
	width: 18px;
}
.added-value-table-wrap h4 {
	font-size: 20px;
	margin-bottom: 15px;
	margin-top: 15px
}
.added-value-table-wrap .table-responsive {
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid #e8e8e8;
	margin-bottom: 10px
}
.added-value-table-wrap .table-responsive .table {
	border: none;
	margin: 0;
}
.added-value-table-wrap .table-responsive .table tr {
	border-bottom: 1px solid #e8e8e8;
}
.added-value-table-wrap .table-responsive .table th {
	border-bottom: 1px solid #e8e8e8;
	font-size: 14px;
	font-weight: 500;
	height: 45px;
	vertical-align: middle;
	padding-left: 20px;
}
.added-value-table-wrap .table-responsive .table thead {
	background: #bbde1a;
	font-weight: 500;
	font-size: 14px;
}
.added-value-table-wrap .table-responsive .table tr td {
	font-size: 14px;
	font-weight: 500;
	height: 45px;
	vertical-align: middle;
	padding-left: 20px;
	font-weight: 300
}
.added-value-table-wrap .table-responsive .table tr:nth-last-child(1) {
	border: none
}
.added-value-table-wrap .table-responsive .table tr:nth-last-child(1) td {
	border: none
}
.added-value-table-wrap .table-responsive .table tr td a {
	background: #008755;
	padding: 5px 15px;
	color: #fff;
	border-radius: 6px
}
.submit-btn-wrap {
	margin-top: 25px;
	text-align: center;
}
.submit-btn-wrap a {
	background: #BBDE1A;
	border: none;
	outline: none;
	padding: 10px 20px;
	color: #000;
	font-size: 14px;
	font-weight: 400;
	border-radius: 8px;
}
.submit-btn-wrap a img {
	margin-left: 5px !important;
	position: relative;
	top: -1px;
}
.submit-btn-wrap a:hover {
	background: #008755;
	color: #fff;
}
.document-image-wrap {
	box-shadow: 0px 0px 15px 0 #f5f5f5;
	border-radius: 8px;
	background-color: #fff;
	padding: 30px 20px;
	gap: 25px;
	margin-top: 25px;
	text-align: center
}
.document-icon img {
	width: 80px;
	margin: 0 auto;
	margin-bottom: 15px
}
.download-btn a {
	border-bottom: 1px solid #ccc;
	color: #008755;
}
.download-btn a:hover {
	color: #000;
}
.success-account-wraper {
	box-shadow: 0px 0px 15px 0 #f5f5f5;
	border-radius: 8px;
	background-color: #fff;
	padding: 30px 20px;
	gap: 25px;
	margin-top: 25px;
	text-align: center;
	width: 40%;
	margin: 0 auto;
}
.success-account-wraper p {
	font-size: 14px;
	font-weight: 300;
	color: #000;
	padding: 5px 0 15px 0
}
.btn-login a {
	background: #BBDE1A;
	border: none;
	outline: none;
	padding: 10px 20px;
	color: #000;
	font-size: 14px;
	font-weight: 400;
	border-radius: 8px;
}
.change-info-wraper {
	background: #ffe7e7;
	margin: 15px 0;
	border: 1px solid #fbcbcb;
	padding: 25px;
	border-radius: 8px;
}
.change-info-wraper h4 {
	font-weight: 400;
	font-size: 22px;
	margin-bottom: 25px;
}
.change-info-wraper h4 img {
	width: 25px;
	position: relative;
	top: -1px
}
.change-info-wraper .form-group {
	margin-bottom: 25px;
}
.change-info-wraper .form-group .row {
	align-items: center;
}
.change-info-wraper .form-group label {
	font-size: 14px;
	font-weight: 300;
	margin-bottom: 3px;
	color: #000000;
}
.change-info-wraper .form-group .form-control {
	height: 45px;
	border: none;
	outline: none;
	box-shadow: 0px 10px 15px 0 #eddede;
	border-radius: 8px;
	background-color: #fff;
	font-size: 14px;
	border: 1px solid #CEF4E5;
	font-weight: 300;
	color: #666;
	padding-left: 15px;
}
.change-info-wraper .form-group .form-control:focus {
	box-shadow: none;
}
.submit-button-wra {
	text-align: right;
}
.submit-button-wra button {
	background: #BBDE1A;
	border: none;
	outline: none;
	padding: 10px 20px;
	color: #000;
	font-size: 14px;
	font-weight: 400;
	border-radius: 8px;
}
.choose-control {
	padding-top: 11px;
	padding-left: 19px;
}
.login-pages-wraper {
	padding: 80px 0;
	background: url(../images/bg-content.jpg) no-repeat top;
	background-size: cover;
}
.form-area-outer {
	width: 20%;
	margin: 0 auto;
	box-shadow: 0px 0px 65px 0 #e2e2e2;
	border-radius: 8px;
	background-color: #fff;
	padding: 20px;
}
.logo-site-login {
	width: 100px;
	margin: 0 auto;
}
.form-area-outer h2 {
	text-align: center;
    font-size: 17px;
    color: #000;
    font-weight: 400;
    padding: 15px 25px;
}
.form-area-outer label {
	font-size: 14px;
	font-weight: 300;
	margin-bottom: 3px;
	color: #000000;
}
.form-area-outer .form-group {
	margin-bottom: 25px;
}
.form-area-outer .form-control {
	height: 40px;
	border: none;
	outline: none;
	box-shadow: 0px 10px 15px 0 #f5f5f5;
	border-radius: 8px;
	background-color: #fff;
	font-size: 14px;
	border: 1px solid #CEF4E5;
	font-weight: 300;
	color: #666;
	padding-left: 15px;
}
.form-area-outer .form-control:focus {
	border: 1px solid #008755;
	box-shadow:none;
}
.verify-button {
	text-align: center;
}
.verify-button a {
	background: #BBDE1A;
	border: none;
	outline: none;
	padding:10px 20px;
	color: #000;
	font-size: 14px;
	font-weight: 400;
	border-radius: 8px;
	text-align: center;
	display: block;
	box-shadow: 0px 10px 15px 0 #f5f5f5;
}
.verify-button a img {
	position: relative;
	top: -1px;
	margin-left: 5px;
}
.verify-button a:hover{
	background:#008755;
	color:#fff;
}
.verify-button a:hover img{
	filter: brightness(0) invert(1);
}
.otp-pages-wraper .form-area-outer{
	width:25% !important;
	margin:0 auto !important;
}
.otp-pages-wraper .form-area-outer .form-control{
	padding:0;
	font-size:20px;
	font-weight:bold;
	text-align:center;
}
.otp-pages-wraper  .col-md-2{
	padding:0 5px;
}

.form-select-wrap {
	display: flex;
	flex-direction: column;
}
.form-select-wrap .invalid-feedback {
	display: block;
	margin-top: 0.25rem;
	order: 1;
}

/* Select2 - same look as original form-select */
.select2-container .select2-selection--single {
	height: 45px !important;
	border: 1px solid #CEF4E5 !important;
	box-shadow: 0px 10px 15px 0 #f5f5f5;
	border-radius: 8px !important;
	background-color: #fff;
	padding-left: 15px;
	outline: none;
}
.select2-container .select2-selection--single .select2-selection__rendered {
	line-height: 43px !important;
	padding-left: 0;
	font-size: 14px;
	font-weight: 300;
	color: #666;
}
.select2-container .select2-selection--single .select2-selection__arrow {
	height: 43px !important;
	right: 8px;
}
.select2-container--focus .select2-selection--single,
.select2-container--open .select2-selection--single {
	border: 1px solid #BBDE1A !important;
	box-shadow: none !important;
	background-color: #fff !important;
	border-radius: 8px !important;
}
.select2-dropdown {
	border: 1px solid #CEF4E5 !important;
	border-radius: 8px !important;
	box-shadow: 0px 10px 15px 0 #f5f5f5;
}
.select2-results__option--highlighted[aria-selected] {
	background-color: #BBDE1A !important;
	color: #000;
}
.select2-container--default .select2-selection__arrow b {
	border-color: #666 transparent transparent transparent;
	border-width: 5px 4px 0 4px;
}
.select2-container--open .select2-selection__arrow b {
	border-color: transparent transparent #666 transparent !important;
	border-width: 0 4px 5px 4px !important;
}

select.form-select.is-valid + .select2-container .select2-selection--single {
	border-color: #198754 !important;
	position: relative;
	padding-right: 2.25rem !important;
}
select.form-select.is-valid + .select2-container .select2-selection--single .select2-selection__rendered {
	padding-right: 24px;
}
select.form-select.is-valid + .select2-container .select2-selection--single::after {
	content: "✓";
	position: absolute;
	right: 36px;
	top: 50%;
	transform: translateY(-50%);
	color: #198754;
	font-size: 15px;
	font-weight: bold;
	pointer-events: none;
}

.top-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header-nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 36px;
	height: 36px;
	background: none;
	border: 1px solid #ccc;
	border-radius: 6px;
	cursor: pointer;
	padding: 6px;
	z-index: 1001;
}
.mobile-menu-toggle span {
	display: block;
	width: 20px;
	height: 2px;
	background: #333;
	border-radius: 2px;
	transition: all 0.3s ease;
}
.mobile-menu-toggle.active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle.active span:nth-child(2) {
	opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 991px) {
	.content-step-wraper .nav-tabs {
		gap: 40px;
	}
	.content-step-wraper .nav-tabs li:before {
		width: 60px;
		left: 110px;
	}
	.content-step-wraper .nav-tabs li:nth-child(2):before {
		left: 100px !important;
	}
	.content-step-wraper .nav-tabs li:nth-child(3):before {
		left: 90px !important;
		width: 60px !important;
	}
	.content-step-wraper .nav-tabs li a span {
		width: 70px;
		height: 70px;
		padding-top: 14px;
		margin-bottom: 12px;
	}
	.content-step-wraper .nav-tabs li a span img {
		width: 28px;
	}
	.content-step-wraper .nav-tabs li a span:before {
		width: 90px;
		height: 34px;
		left: -12px;
		bottom: -18px;
	}
	.content-step-wraper .nav-tabs li a strong {
		font-size: 13px;
	}
	.badge-wrap {
		width: 24px;
		height: 24px;
		font-size: 11px;
		padding-top: 2px;
		top: -3px;
		right: -3px;
	}
	.tab-content {
		width: 100%;
		padding: 20px 15px;
	}
	.mobile-menu-toggle {
		display: flex;
	}
	.right-btn-nav-wrap {
		display: none;
		width: 100%;
		padding-top: 15px;
	}
	.right-btn-nav-wrap.mobile-open {
		display: block;
	}
	.right-btn-nav-wrap ul {
		flex-direction: column;
		align-items: stretch;
		gap: 8px;
	}
	.right-btn-nav-wrap ul li a,
	.right-btn-nav-wrap ul li form button {
		display: block;
		text-align: center;
		width: 100%;
	}
	.top-header-inner {
		flex-wrap: wrap;
	}
	.logo-right-head {
		text-align: center;
	}
	.logo-right-head img {
		width: 120px;
	}
	.header-nav-wrap {
		display: none;
	}
	.header-nav-wrap.mobile-open {
		display: block;
	}
	.header-nav-wrap ul,
	.header-nav-wrap .left-nav-header ul {
		flex-direction: column;
		gap: 0;
		margin-left: 0;
		padding: 0;
	}
	.header-nav-wrap ul li a {
		padding: 10px 15px;
		border-bottom: 1px solid #f0f0f0;
		font-size: 14px;
	}
	.header-nav-inner {
		flex-direction: column;
		align-items: stretch;
	}
	.pdf-btn-wrp {
		padding: 10px 0;
		text-align: center;
	}
	.hero-main-wrap h1 {
		font-size: 24px;
	}
	.footer-main-wraper .row {
		text-align: center;
	}
	.footer-main-wraper .logo-info-wrp ul {
		border-right: none;
		border-bottom: 1px solid #E5E5E5;
		justify-content: center;
		padding: 15px 0;
	}
	.footer-contenct-wraper {
		padding-top: 15px;
		text-align: center;
	}
	.download-app-wrap {
		border-left: none;
		border-top: 1px solid #E5E5E5;
		padding: 15px 0;
		text-align: center;
	}
	.content-application-wrap p {
		padding-right: 0;
	}
	.request-submit-wrap {
		flex-direction: column;
		text-align: center;
	}
	.request-submit-wrap .approve-icon-wrp {
		width: 100%;
		margin-bottom: 15px;
	}
	.company-information-wrap .company-info-text {
		flex-direction: column;
		text-align: center;
	}
	.comapany-logo-wrap {
		width: 60px;
		margin: 0 auto;
	}
	.info-company ul {
		flex-wrap: wrap;
		justify-content: center;
		gap: 10px;
	}
	.success-account-wraper {
		width: 90%;
	}
}

@media (max-width: 767px) {
	.content-step-wraper .nav-tabs {
		gap: 10px;
		flex-wrap: nowrap;
		justify-content: space-around;
		padding: 0 10px;
	}
	.content-step-wraper .nav-tabs li:before {
		width: 30px;
		height: 10px;
		left: auto !important;
		right: -22px;
		top: 28px;
	}
	.content-step-wraper .nav-tabs li:nth-child(2):before {
		right: -22px;
		left: auto !important;
	}
	.content-step-wraper .nav-tabs li:nth-child(3):before {
		display: none !important;
	}
	.content-step-wraper .nav-tabs li a span {
		width: 55px;
		height: 55px;
		padding-top: 10px;
		margin-bottom: 8px;
		border-width: 2.5px;
	}
	.content-step-wraper .nav-tabs li a span img {
		width: 22px;
	}
	.content-step-wraper .nav-tabs li a span:before {
		display: none;
	}
	.content-step-wraper .nav-tabs li a strong {
		font-size: 11px;
	}
	.content-step-wraper .nav-tabs li:nth-child(1) a span,
	.content-step-wraper .nav-tabs li:nth-child(2) a span,
	.content-step-wraper .nav-tabs li:nth-child(3) a span {
		padding-top: 12px;
	}
	.content-application-wraper .nav-tabs li:nth-child(1) a span,
	.content-application-wraper .nav-tabs li:nth-child(3) a span {
		padding-top: 12px;
	}
	.badge-wrap {
		width: 22px;
		height: 22px;
		font-size: 10px;
		padding-top: 1px;
		top: -2px;
		right: -2px;
	}
	.nav-tabs .nav-link.active:before {
		display: none;
	}
	.tab-content {
		width: 100%;
		padding: 15px 10px;
		margin-top: 15px;
	}
	.register-form-actions {
		flex-direction: column;
		gap: 10px;
	}
	.register-form-actions .btn {
		width: 100%;
	}
	.form-area-outer {
		width: 90% !important;
	}
	.otp-pages-wraper .form-area-outer {
		width: 95% !important;
	}
	.login-pages-wraper {
		padding: 40px 0;
	}
	.hero-main-wrap {
		padding: 15px 0;
	}
	.hero-main-wrap h1 {
		font-size: 20px;
	}
	.content-step-wraper {
		padding: 20px 0 40px 0;
	}
	.content-application-wrap {
		padding-left: 0;
	}
	.change-info-wraper h4 {
		font-size: 18px;
	}
	.content-application-wraper .nav-tabs li:nth-child(1) a span,
	.content-application-wraper .nav-tabs li:nth-child(3) a span {
		padding-top: 16px;
	}
	.step-button {
		width: 40px;
		height: 40px;
		font-size: 12px;
	}
	.step-button[aria-expanded="true"] {
		width: 48px;
		height: 48px;
	}
	.added-value-table-wrap .table-responsive .table th,
	.added-value-table-wrap .table-responsive .table tr td {
		font-size: 12px;
		padding-left: 10px;
		white-space: nowrap;
	}
	.site-logo-wrap img {
		width: 50px;
	}
	.right-btn-nav-wrap ul li a {
		padding: 8px 12px;
		font-size: 13px;
	}
	.footer-main-wraper .logo-info-wrp ul li img {
		width: 60px;
	}
	.app-download-wrap ul {
		justify-content: center;
	}
}

@media (max-width: 575px) {
	.form-area-outer {
		width: 95% !important;
		padding: 15px;
	}
	.form-area-outer h2 {
		font-size: 15px;
		padding: 10px 10px;
	}
	.otp-pages-wraper .col-2 {
		width: 16.66%;
		padding: 0 3px;
	}
	.otp-pages-wraper .form-area-outer .form-control {
		font-size: 16px;
	}
	.document-image-wrap {
		padding: 20px 10px;
	}
	.change-info-wraper {
		padding: 15px;
	}
	.change-info-wraper .form-group .row .col-md-3,
	.change-info-wraper .form-group .row .col-md-9 {
		width: 100%;
	}
}


@media (max-width:995px) and (min-width:768px) {
	.form-area-outer{
		width:50%;
	}
}
@media (max-width:1169px) and (min-width:996px) {
	.form-area-outer{
		width:40%;
	}
}
@media (max-width:1600px) and (min-width:1170px) {
	.form-area-outer{
		width:30%;
	}
}

