/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap'); */
@import url('google-fonts.css');
/* font-family: 'Inter', sans-serif;
font-family: 'Poppins', sans-serif; */
:root {
	--theme-color: #0466BF;
	--theme-color-light: #039FDA;
	--text-color: #666666;
	--white: #ffffff;
	--black: #000000;
}

*{
	margin: 0px;
	padding: 0px;
	font-size: 16px;
	line-height: 1.5;
	box-sizing: border-box;
	/* color: var(--text-color); */
	font-family: 'Poppins', sans-serif;
}
.error * {
  color: #dc2626;
}
img{
	height: auto;
	max-width: 100%;
}
body{
	font-size: 16px;
	line-height: 1.5;
	font-family: 'Poppins', sans-serif;
}
h1{
	font-size: 40px;
	font-weight: 600;
	line-height: 48px;
	margin: 0 0 12px;
	color: var(--theme-color);
}
h2,h3,h4{
	font-family: 'Poppins';
}
h3{
	color: #45464E;
	font-size: 20px;
	line-height: 30px;
	font-weight: 600;
}
h4{
	margin-bottom: 16px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #333333;
}
a{
	text-decoration: none;
	color: var(--theme-color-light);
}
a:hover{
	color: var(--theme-color);
}
/*p{
	margin: 0px 0 65px 0;
}*/
.margin-bottom-65
{
	margin-bottom: 65px;
}

.container {
	max-width: 1440px;
	/* width: 85%; */
	margin: auto;
	/* display: flex;
	justify-content: center;
	align-items: center;
	align-content: center; */
	/* height: 100vh; */
}
.container2
{
	max-width: 1024px;
	width: 80%;
	margin: 50px auto;
}
.starter {
	margin-bottom: 50px;
}



/*new css*/
.custom-btn{
	height: 55px;
	cursor: pointer;
	color: var(--white);
	align-items: center;
	display: flex;
	text-decoration: none;
	justify-content: center;
	border-radius: 12px;
	padding: 0 40px;
	text-transform: capitalize;
	border:1px solid var(--theme-color);;
	background-color: var(--theme-color);
}
.custom-btn.hidden {
	display: hidden !important;
}
.custom-btn:hover{
	color: var(--theme-color);
	background: transparent;
}
.custom-form-btn{
	display: flex;
	width: 100%;
	margin-bottom: 20px;
}

input.sign-as-radio[type=radio] {
	padding: 0.5em;
	-webkit-appearance: none;
	outline: 0.1em solid black;
	outline-offset: 0.1em;
}
input.sign-as-radio[type=checkbox] {
	padding: 5px;
	height: auto;
	border-radius: 4px;
	-webkit-appearance: none;
	outline: 0.1em solid #022C66;
	outline-offset: 0.1em;
	}
input.sign-as-radio[type=checkbox]:checked {
	display: inline-block;
	background-color: var(--theme-color);
}

input.sign-as-radio[type=radio]:checked {
	display: inline-block;
	background-color: var(--theme-color);
}
input.sign-as-check[type=checkbox] {
	padding: 0.5em;
	-webkit-appearance: none;
	outline: 0.1em solid black;
	outline-offset: 0.1em;
}

input.sign-as-check[type=checkbox]:checked {
	display: inline-block;
	background-color: var(--theme-color);
}
.personal-info {
	padding: 10px;
}
.sign-sa-radio-label
{
	margin-right: 50px;
}
.personal-info-radio {
	/*display: flex;*/
	/*justify-content: space-between;*/
}
.flex
{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.flex2
{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.flex-center
{
	align-items: center;
}
.label-top{
	display: block;
	font-weight: 300;
	color: var(--text-color);
	position: absolute;
	top: -12px;
	left: 17px;
	padding: 0 10px;
	background-color: var(--white);
}
.margin-bottom
{
	margin-bottom: 25px;
}
.fb4
{
	flex-basis: 24%;
}
.fb4 img
{
	width: 100%;
}
.fb1
{
	flex-basis: 100%;
}
.form-field,
.form-field[type=date]{
	margin: 0;
	height: 50px;
	width: 100%;
	font-size: 16px;
	padding: 10px 27px;
	border-radius: 12px;
	border: 1px solid #DDDDDD;
	font-weight: 500;
	background-color: var(--white);
	color: var(--theme-color);
}
select.form-field{
	appearance: none;
	background: var(--white) url('/assets/images/angle-down-gray.png') no-repeat right 25px center;
}
/* .form-field:focus{
	outline-color: var(--theme-color);
} */
/* .form-field::placeholder{
	font-weight: 500;
	color: var(--theme-color);
} */
.form-field::placeholder,
.form-field:-webkit-autofill,
.form-field:-webkit-autofill:hover,
.form-field:-webkit-autofill:focus {
	font-size: 16px;
	font-family: 'Poppins', sans-serif;
    transition: background-color 5000s ease-in-out 0s;
}
.personal-info .form-field::placeholder,
.personal-info .form-field:-webkit-autofill,
.personal-info .form-field:-webkit-autofill:hover,
.personal-info .form-field:-webkit-autofill:focus{
	font-weight: 500;
	-webkit-text-fill-color: var(--theme-color) !important;
}
input.form-field[type=text]:disabled {
	background: var(--form-disabled);
	cursor: no-drop;
}
.file-upload
{
	display: block;
	margin: 10px 0;
	border: none;
}
#form-section-vendor{
	display: none;
}

/*profile update*/
.banner-img {
	height: 35vh;
	width: 100%;
	border-bottom: 10px solid #B638C4;
}
.margin-move-up
{
	margin: -7% auto 50px !important;

}
.profile-container
{
	width: 80%;
	max-width: 65rem;
	margin: -7% auto 50px;

}
.profile-container2
{
	width: 80%;
	max-width: 65rem;
	margin: 50px auto;

}
.stamp-container
{
	width: 80%;
	max-width: 80rem;
	margin: auto;
	height: 100vh;
	display: flex;
}
.stamp-container form
{
	margin: auto;
	text-align: center;
}
.profile-pic img
{
	width: 250px;
	height: 250px;
	border-radius: 50%;
	border: 1px solid black;
}
.custom-profile-btn
{
	color: var(--theme-color);
	border: 2px solid var(--theme-color);
	padding: 5px 30px;
	font-weight: 500;
}
.custom-profile-btn2
{
	color: var(--theme-color);
	border: 2px solid var(--theme-color);
	padding: 4px 20px;
	font-weight: 500;
	font-size: 16px;
}
.custom-profile-btn-2
{
	padding: 5px 190px;
}
.right-align
{
	text-align: right;
}
.bg-text
{
	font-size: 40px;
	font-weight: 700;
}


.profile-admin-container
{
	width: 80%;
	max-width: 65rem;
	margin: 50px auto;
}
.fb2.right-align {
	margin-top: 8%;
}

.half-width {
	width: 49%;
	padding: 20px 65px 20px 15px;
}
.input-button{
	height: 50px;
    width: 50px;
	cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
	background-color: var(--theme-color);
	border: none;
	color: var(--white);
    font-size: 20px;
    position: absolute;
    bottom: 0;
    right: 10px;
    border-radius: 0 12px 12px 0;
}
.disable-btn{
	pointer-events: none;
	background-color: var(--text-color);
}
.input-button i{
	vertical-align: bottom;
    color: var(--white);
}
.terms-ul
{
	margin-left: 2%;
}
.documents-img {
	width: 100%;
}

/*Profile Page css*/
.container_fluid{
	max-width: 100%;
	width: 100%;
	margin: auto;
}
#profile_page-sec > .uk-row{
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

#profile_page-sec > .uk-row > .uk-col_1{
	flex-basis: 20.9%;
	background-color: #f2f2f2;
	padding-top: 110px;
}
#profile_page-sec > .uk-row > .uk-col_2{
	flex-basis: 79.1%;
}
#profile_page-sec > .uk-row > .uk-col_1 > .profile_picture{
	background-color: #fff;
	padding: 40px 20px;
	padding-bottom: 15px;
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	flex-direction: column;
}
#profile_page-sec > .uk-row > .uk-col_1 > .profile_picture img{
	padding-left: 20px;
	padding-right: 20px;
}
#profile_page-sec > .uk-row > .uk-col_1 > .profile_picture button{
	background: #00401a;
	border: 0;
	border-radius: 50%;
	height: 30px;
	width: 30px;
	color: #fff;
	cursor: pointer;
}
#profile_page-sec > .uk-row > .uk-col_1 > .profile_picture button:hover{
	background: #00401a67;
}
/*profile picture two*/
#profile_page-sec > .uk-row > .uk-col_1 > .profile_picture_2{
	margin-top: -250px;
	padding: 0px 20px;
	padding-bottom: 15px;
	position: relative;
}
#profile_page-sec > .uk-row > .uk-col_1 > .profile_picture_2 img{
	padding-left: 20px;
	padding-right: 20px;

}
#profile_page-sec > .uk-row > .uk-col_1 > .profile_picture_2 button{
	background: #00401a;
	border: 0;
	border-radius: 50%;
	height: 30px;
	width: 30px;
	color: #fff;
	cursor: pointer;
	position: absolute;
	bottom: 30px;
	right: 85px;
}
#profile_page-sec > .uk-row > .uk-col_1 > .profile_picture_2 button:hover{
	background: #00401a67;
}
#profile_page-sec > .uk-row > .uk-col_1 > .profile_details{
	padding-top: 30px;
}
#profile_page-sec > .uk-row > .uk-col_1 > .profile_details > ul{
	padding-left: 20px;
}
#profile_page-sec > .uk-row > .uk-col_1 > .profile_details > ul > li{
	list-style: none;
	padding: 8px 0;
}
#profile_page-sec > .uk-row > .uk-col_1 > .profile_details > ul > li > a{
	text-decoration: none;
	color: #2a2d2b;
	font-weight: 600;
}
#profile_page-sec > .uk-row > .uk-col_1 > .profile_details > ul > li > a:hover{
	color: #00401a;
}
#profile_page-sec > .uk-row > .uk-col_2 > .container_uk{
	max-width: 1195px;
	width: 100%;
	margin: auto;
}
#profile_page-sec > .bottom_border-sec .notification_icon{
	display: flex;
	justify-content: end;
	align-items: center;
	padding-top: 30px;
	padding-right: 150px;
	position: relative;
}
#profile_page-sec > .bottom_border-sec .notification_icon .notification_indicator{
	position: absolute;
	right: 150px;
	top: 27px;
	background: #C90909;
	height: 15px;
	width: 15px;
	border-radius: 50%;
}
#profile_page-sec > .bottom_border-sec .notification_icon a{
	color: #00401A;
	font-size: 26px;
}
#profile_page-sec > .bottom_border-sec .notification_icon a:hover{
	color: #00401a67;
}
#profile_page-sec > .uk-row > .uk-col_2 > .container_uk > h1{
	font-size: 84px;
	font-weight: 700;
	padding-top: 100px;
	color: #00401a;
}
#profile_page-sec > .uk-row > .uk-col_2 > .container_uk > h2{
	font-size: 40px;
	font-weight: 600;
	padding-top: 50px;
	color: #00401a;
	padding-bottom: 50px;
}
#profile_page-sec > .uk-row > .uk-col_2 > .container_uk > .cards_row{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#profile_page-sec > .uk-row > .uk-col_2 > .container_uk > .cards_row > .cards_col{
	flex-basis: 25%;
}
#profile_page-sec > .uk-row > .uk-col_2 > .container_uk > .cards_row > .cards_col > a{
	text-decoration: none;
}
#profile_page-sec > .uk-row > .uk-col_2 > .container_uk > .cards_row > .cards_col > a > .card{
	background-color: #f2f2f2;
	height: 280px;
	width: 230px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #00401A;

}
#profile_page-sec > .uk-row > .uk-col_2 > .container_uk > .cards_row > .cards_col > a > .card i{
	font-size: 50px;
}
#profile_page-sec > .uk-row > .uk-col_2 > .container_uk > .cards_row > .cards_col > .card{
	background-color: #f2f2f2;
	height: 280px;
	width: 230px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #00401A;
}
#profile_page-sec > .uk-row > .uk-col_2 > .container_uk > .cards_row > .cards_col > .card i{
	font-size: 50px;
}
#profile_page-sec > .uk-row > .uk-col_2 > .container_uk button{
	margin-top: 50px;
	border: 3px solid #00401A;
	color: #00401A;
	padding: 20px 250px;
	font-size: 22px;
	font-weight: 600;
	cursor: pointer;
}
#profile_page-sec > .uk-row > .uk-col_2 > .container_uk button:hover{
	color: #00401a67;
}
#profile_page-sec > .uk-row > .uk-col_2 > .container_uk > .cards_row > .cards_col > .card a > i {
	color: #00401a;
}
#profile_page-sec > .uk-row > .uk-col_2 > .container_uk > .cards_row > .cards_col > .card a > i:hover {
	color: #00401a67;
}
	.bottom_border-sec{
	background-color: #f2f2f2;
	border-bottom: 10px solid #B638C4;
	padding: 50px 0;
}
/*Admin Panel*/
.container_box{
	max-width: 1436px;
	width: 100%;
	margin: auto;
}
#admin_panel-sec > form.example input[type=text] {
	padding: 10px;
	font-size: 17px;
	border: 0;
	float: left;
	width: 95%;
	background: #f1f1f1;
	}

	#admin_panel-sec > form.example button {
	float: left;
	width: 5%;
	padding: 10px;
	background: #f1f1f1;
	color: #000;
	font-size: 17px;
	border: none;
	cursor: pointer;
	}


	#admin_panel-sec > form.example::after {
	content: "";
	clear: both;
	display: table;
	}
	.suggestion_tabs{
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 10px;
		padding-top: 20px;
	}
.suggestion_tabs > .col{
	flex-basis: 30%;
}
.suggestion_tabs > .col > .example{
	display: flex;

}
.suggestion_tabs > .col > .example input[type=text] {
	padding: 10px;
	font-size: 17px;
	border: 0;
	width: 80%;
	background: #f1f1f1;
	border-bottom-left-radius: 20px;
	border-top-left-radius: 20px;
	}
	.center{
		text-align: center;
	}
	.suggestion_tabs > .col > .example button {
	width: 20%;
	background: #f1f1f1;
	color: #000;
	font-size: 17px;
	border: none;
	cursor: pointer;
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
	padding-top: 5px;
	}
	i.fas.fa-check-circle {
	position: relative;
	color: #0066FF;
}
	.fa-check-circle:before, .fa-circle-check:before {
	content: "\f058";
	position: absolute;
	bottom: 8px;
	font-size: 22px;
}
	.suggestion_tabs > .col > .example button i{
	background: #00401a;
	border: 0;
	border-radius: 50%;
	height: 22px;
	width: 22px;
	color: #fff;
	cursor: pointer;
	position: relative;
	}
	.suggestion_tabs > .col > .example button .fa-pen:before {
	content: "\f304";
	position: absolute;
	bottom: 6px;
	left: 6px;
	font-size: 10px;
}
#admin_panel-sec > p{
	margin: 0;
	font-size: 42px;
	font-weight: 600;
	line-height: 32px;
	padding: 20px 0;
	color: #515151;
}
#admin_panel-sec > p > span{
	color: #00401A;
}
#admin_panel-sec > h1{
	font-size: 84px;
	font-weight: bold;
	line-height: 133px;
}
#admin_panel-sec > h2{
	font-size: 42px;
	font-weight: 600;
	line-height: 32px;
	padding: 20px 0;
	padding-top: 50px;
	color: #515151;
}
.top-sec {
	padding: 50px 0;
	display: flex;
	justify-content: end;
	padding-top: 30px;
}
.top-sec .notification_icon .notification_indicator{
	position: absolute;
	right: 150px;
	top: 27px;
	background: #C90909;
	height: 15px;
	width: 15px;
	border-radius: 50%;
}
.top-sec .notification_icon a{
	color: #00401A;
	font-size: 26px;
}
.top-sec .notification_icon a:hover{
	color: #00401a67;
}
#admin_panel-sec > .row{
	display: flex;
	justify-content: space-between;
}
.dynamic-row form{
	display: flex;
	margin: 0 -10px;
	flex-wrap: wrap;
	justify-content: space-between;
}
#admin_panel-sec > .row > .col{
	flex-basis: 49%;
}
#admin_panel-sec > .row > .col label{
	font-size: 32px;
	font-weight: 600;
	line-height: 32px;
	color: #00401A;
}
#admin_panel-sec > .row > .col > input{
	width: 100%;
}
#admin_panel-sec > .row > .col > input::-webkit-input-placeholder{
	font-size: 24px;
	font-weight: 400;
	line-height: 32px;
	color: #777777;
}
#admin_panel-sec > .row > .col > select{
	width: 100%;
	font-size: 24px;
	font-weight: 400;
	line-height: 32px;
	color: #777777;
}
#admin_panel-sec > .row > .col > input[type=text] ,select , input[type=date]{
	padding: 10px;
	border: 0;
	background: #f1f1f1;
	font-size: 24px;
	font-weight: 400;
	line-height: 32px;
	color: #777777;
	margin: 20px 0;
	}
	#admin_panel-sec > .row > .col  button{
	text-decoration: none;
	color: #00401A;
	border: 1px solid #00401A;
	padding: 15px 50px;
	font-size: 32px;
	font-weight: 600;
	line-height: 32px;
	width: 100%;
	cursor: pointer;
}
#admin_panel-sec > .menu_btns button{
	font-size: 32px;
	font-weight: 600;
	line-height: 32px;
	color: #00401A;
	border: 3px solid #00401A;
	background: transparent;
	padding: 15px 50px;
	cursor: pointer;
}
#admin_panel-sec > p.danger_massage{
	font-size: 24px;
	font-weight: 300;
	line-height: 32px;
	color: #C90909;
}
#admin_panel-sec > .box {
	/* color: #F2F2F2; */
	color:#a1a1a1;
	padding: 100px 0;
	width: 100%;
}
.pagination{
	z-index: 9;
    top: 50%;
    width: 50px;
    height: 50px;
	cursor: pointer;
    display: flex;
	position: absolute;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
	transition: all 0.5s ease;
    transform: translateY(-50%);
    background: var(--theme-color);
}
.pagination i{
	color: #fff;
}
#page-1-btn{
	left: -100%;
}
#page-2-btn{
	right: -100%;
}


/* New Theme Styles Start
=================================*/
.login-signup-sec{
	height: 100vh;
	background: url('/assets/images/login-bg.png') no-repeat right top / 50% 100%;
}
.sign-up-page{
	height: auto;
}
.personal-info{
	padding: 0;
	width: 50%;
	position: relative;
}
.logo-sec{
	margin: 0 auto;
	max-width: 620px;
	padding: 60px 30px 0;
}
.form-sec{
	width: 100%;
	margin: 0 auto;
	max-width: 620px;
	padding: 50px 30px;
}
.form-sec p{
	text-align: center;
}
.login-signup-sec .personal-info{
	max-width: 50%;
}
.form-sec .welcome-back{
	font-size: 20px;
	line-height: 30px;
	margin-bottom: 45px;
	text-align: left;
	color: #9c9fab;
}
.field-group{
	position: relative;
	margin-bottom: 25px;
}
.field-group .password-field{
	padding-right: 60px;
}
.show-password{
	position: absolute;
	top: 50%;
	right: 25px;
	margin-top: -7px;
	display: inline-block;
}
.show-password img{
	display: block;
}
.css-checkbox{
	overflow: hidden;
	position: relative;
}
.css-checkbox label{
	position: relative;
	padding-left: 20px;
	cursor: pointer;
	display: inline-block;
}
.css-checkbox label::before{
	content: '';
	width: 12px;
	height: 12px;
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -6px;
	border-radius: 2px;
	background-color: var(--white);
	border: 1px solid var(--theme-color-light);
}
.css-checkbox input:checked + label::before{
	background-color: var(--theme-color-light);
}
.css-checkbox input{
	position: absolute;
	top: -100%;
	opacity: 0;
	visibility: hidden;
}
.button-block{
	display: flex;
	justify-content: space-between;
}
.button-block a{
	width: 260px;
}

/* Dashboard Page
==============================*/
.dashboard-page{
	background-color: #F4F4F4;
}
.top-header{
	height: 60px;
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9;
	padding-right: 37px;
	align-items: center;
	justify-content: flex-end;
	background-color: #E5E9EF;
}
.top-header ul{
	margin: 0;
	padding: 0;
	display: flex;
	list-style-type: none;
}
.top-header li{
	margin-left: 20px;
}
.top-header li a{
	display: block;
	line-height: 1;
}
.sidebar{
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	width: 88px;
	z-index: 10;
	display: flex;
	padding: 0 16px;
	padding-top: 25px;
	text-align: center;
	flex-direction: column;
	background-color: #E5EFF8;
	justify-content: space-between;
}
.sidebar-logo{
	margin-bottom: 90px;
	display: inline-block;
}
.sidebar ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.sidebar li{
	margin-bottom: 8px;
}
.sidebar li a{
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.main-sec{
	padding: 85px 26px 28px 112px;
}
.summary-cards-row{
	display: flex;
	margin: 0 -14px;
	flex-direction: row;
	align-items: flex-start;
}
.summary-card-col{
	width: 30%;
	padding: 0 14px;
}
.summary-card-col:last-child{
	width: 40%;

}
.summary-card{
	border-radius: 12px;
	background-color: white;
}
.card-dropdown select{
	/* border: 1px solid #ccc; */
	padding: 2px 20px 2px 2px;
	border-radius: 2px;
	font-family: 'Inter';
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 15px;
	color: var(--text-color);
	background: #FFFFFF url('/assets/images/angle-down-gray.png') no-repeat right 10px center;
	background-position: calc(100% - 4px) calc(1em + -4px), calc(100% - 3px) calc(1em + -3px), calc(100% - 2.3em) 0.5em;
	background-size: 8px 4px, 3px 5px, 0px 1.5em;
	background-repeat: no-repeat;
}
.card-top-sec{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 11px 15px;

}
.card-bottom-sec{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 11px 15px;
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 18px;
}
.card-info h4{
	color: black;
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 500;
	font-size: 20px;
	line-height: 30px;
	margin-bottom: 0;
}
.card-info span{
	font-family: 'Inter';
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 15px;
	color: #67AA7F;
}
.card-info p{
	padding: 0px 0px 8px 0px ;
	color: var(--text-color);
}
.card-bottom-sec-col-3{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 11px 15px;
}
.dashboard-sec{
	padding: 0 26px 17px 112px;
}
.dashboard-sec-row{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.title-sec{
	display: flex;
	margin-bottom: 20px;
	align-items: center;
	justify-content: space-between;
}
.title-sec h4,
.title-sec p{
	margin-bottom: 0;
}
.title-sec a{
	color: #B2B2B2;
	font-size: 12px;
}
.dashboard-content-col{
	width: 60%;
	padding-right: 14px;
}
.dashboard-content{
	padding: 24px;
	border-radius: 15px;
	background-color: #ffffff;
}
.templates-row{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -8px;
	justify-content: space-around;
}
.recent-templates-row{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -8px;
	justify-content: center;
	gap: 30px 20px
}
.template-col{
	/* width: 100%;
	max-width: 25%; */
	padding: 0 8px 15px;
}
.template-col-img{
	margin-bottom: 8px;
	position: relative;
}
.template-col-img:hover .template-options {
	display: flex;
}
.template-col-img img{
	width: 100%;
	height: 246px;
	display: block;
	border-radius: 6px;
}
.template-col-bottom span.title{
	/* max-width: 110px; */
	max-width: 100%;
	display: block;
}
.template-col-box p,
.template-col-bottom span.title,
.template-col-box p a{
	font-family: 'Poppins';
	font-style: normal;
	/* font-weight: 400; */
	/* font-size: 11px; */
	font-size: 14px;
	line-height: 18px;
	color: #4C4C4C;
}
.template-col-meta{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.template-col-date p{
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 300;
	font-size: 11px;
	line-height: 15px;
	color: #7F7F7F;
}
.dashboard-sidebar-sec{
	width: 40%;
	padding-left: 14px;
}
.dashboard-sidebar{
	padding: 24px;
	border-radius: 15px;
	background-color: #ffffff;
}
.recently-items{
	display: block;
}
.recently-items .template-col-box{
	display: flex;
	margin-bottom: 8px;
}
.recently-items .template-col-img{
	/* max-width: 140px; */
	max-width: 190px;
	margin-right: 11px;
}
.recently-items .template-col-img img{
	height: 140px;
}
.recently-items .title-sec{
	margin-bottom: 0;
}
.recently-items .title-sec p{
	font-weight: 500;
	margin-bottom: 8px;
}
.recently-items .template-col-bottom{
	width: 100%;
	max-width: calc(100% - 140px);
}
.button-sec{
	padding-top: 10px;
}
.button-sec a{
	color: var(--white);
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 17px 16px;
	width: 250px;
	height: 58px;
	border-radius: 12px;
	background: var(--theme-color);
}
.button-sec a i{
	font-size: 20px;
	margin-right: 10px;
	color: var(--white);
}
.button-sec a:hover{
	color: var(--theme-color);
	background-color: #E5EFF8;
}
.button-sec a:hover i{
	color: var(--theme-color);
}
.add-new{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	display: flex;
	border-radius: 6px;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.add-new .circle{
	width: 46px;
	height: 46px;
	display: flex;
	border-radius: 46px;
	align-items: center;
	justify-content: center;
	background-color: var(--white);
}
.add-new .circle i{
	font-size: 40px;
	color: #9BC2E5;
}
.add-new p{
	color: #9BC2E5;
	font-size: 12px;
	line-height: 18px;
	margin-top: 12px;
}
.popup-overlay{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9;
	display: none;
	background: rgba(255, 255, 255, 0.19);
	backdrop-filter: blur(2.5px);
}
.popup{
	padding: 40px;
	position: absolute;
	width: 494px;
	left: 50%;
	top: 50%;
	text-align: center;
	border-radius: 12px;
	transform: translate(-50%,-50%);
	background-color: var(--white);
	box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
}
.popup h4{
	font-size: 16px;
	color: #022C66;
	margin-bottom: 12px;
}
.popup p{
	font-size: 12px;
	color: #4C4C4C;
	margin-bottom: 12px;
}
.popup a{
	font-size: 16px;
	color: var(--white);
	padding: 12px 120px;
	width: 338px;
	height: 40px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--theme-color);
	border-radius: 12px;
}
.popup a:hover{
	background-color: var(--theme-color-light);
}
.toggle-sidebar{
	display: none;
}
.toggle-sidebar::after{
	content: '';
	display: block;
	width: 8px;
	height: 13px;
	margin-left: 7px;
	display: inline-block;
	background: url('/assets/images/angle-right.svg');
}
.account-setting{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 30px;
}
.details-form h3{
	margin-bottom: 10px;
}
.details-form .box{
	overflow: hidden;
	position: relative;
}
.details-form .box:hover #page-1-btn{
	left: 15px;
	transition: all 0.5s ease;
}
.details-form .box:hover #page-2-btn{
	right: 15px;
	transition: all 0.5s ease;
}
.details-form .box p{
	margin-bottom: 20px;
}
.details-form .box ul,
.details-form .box ol{
	padding-left: 20px;
}
.details-form .box li{
	margin-bottom: 20px;
}
.account-setting h4{
	width: 100%;
	margin-bottom: 15px;
}
.avatar-img-sec{
	width: 175px;
	height: 175px;
	border-radius: 12px;
	border: 1px solid #E1E2E9;
	overflow: hidden;
}
.avatar-img-sec img{
	width: 100%;
	display: block;
	border-radius: 12px;
}
.avatar-profile-links{
	width: 32px;
	margin-top: 10px;
	margin-left: 20px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.avatar-profile-links a{
	margin-bottom: 10px;
}
.avatar-profile-links img {
	width: 20px;
	cursor: pointer;
}
.details-form{
	max-width: 800px;
}
.details-form h4{
	margin-bottom: 10px;
}
.details-form-block{
	padding: 20px;
	border-radius: 12px;
	background: #FFFFFF;
	margin-bottom: 32px;
}
.form_group_uer{
	max-width: 100% !important;
}
.details-form-block .d-flex{
	margin: 0 -8px;
}
.details-form-block h3{
	font-size: 16px;
	font-weight: 500;
}
.details-form .form-group{
	width: 100%;
	max-width: 50%;
	padding: 0 8px;
	position: relative;
	margin-bottom: 16px;
}
.details-form .personal-info-radio{
	max-width: 100%;
}
.details-form label{
	font-size: 12px;
	margin-bottom: 8px;
	display: block;
}
.form-group label{
	display: block;
}
.user-otp{
	display: none;
	position: relative;
}
.user-otp a{
	position: absolute;
    bottom: 15px;
    right: 24px;
    font-size: 13px;
    color: var(--theme-color);
}
.details-form label.sign-sa-radio-label{
    display: flex;
	color: #45464E;
    align-items: center;
}
.details-form label.sign-sa-radio-label input{
    margin-right: 10px;
}
.details-form input,
.details-form select,
.details-form .form-field[type=date]{
	color: #000;
	background: #E5E9EF;
	border: 1px solid #E5E9EF;
}
.details-form input::placeholder,
.details-form select::placeholder{
	color: #7F7F7F;
}
.icon-field::before{
	content: '';
	display: block;
	position: absolute;
	bottom: 15px;
	left: 28px;
	width: 16px;
	height: 20px;
	z-index: 1;
	top: 43px;
	background: url('/assets/images/Profile.svg');
}
.icon-field input{
	padding-left: 50px;
}
.mail-field::before{
	width: 22px;
	background: url('/assets/images/Message.svg');
}
.address-field::before{
	width: 18px;
	height: 20px;
	background: url('/assets/images/Location.svg');
	position: absolute;
	top: 43px;
}
.shop-field::before{
	width: 26px;
	height: 24px;
	background: url('/assets/images/building.svg');
}
.phone-field{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.phone-field label{
	width: 100%;
}
.phone-field select{
	width: 76px;
	appearance: none;
	padding: 0 10px;
	background: #E5E9EF url('/assets/images/angle-down-gray.png') no-repeat right 10px center;
}
.form-group select {
	background: #E5E9EF url('/assets/images/angle-down-gray.png') no-repeat right 10px center;
}
.phone-field input{
	width: calc(100% - 82px);
}
.details-form .css-checkbox{
	margin-bottom: 14px;
}
.details-form .css-checkbox label{
	display: inline-block;
}
.otp{
	display: none;
}
.otp input{
	font-weight: 500;
	padding-right: 150px;
}
.otp a{
	position: absolute;
	bottom: 14px;
	right: 24px;
	font-size: 13px;
}
.details-form-block.active .member-info{
	display: none;
}
.details-form-block.active .member-otp{
	display: block;
}
#form-content #form-btn{
	position: absolute;
	top: 100%;
	margin-top: 20px;
}
.details-form-block{
	position: relative;
}
.details-form .custom-btn{
	width: 180px;
	height: 58px;
	font-size: 20px;
	color: var(--white);
	background-color: var(--theme-color);
	border: 1px solid var(--theme-color);
}
.details-form .custom-btn:hover{
	color: var(--theme-color);
	background-color: transparent;
}
.details-form .menu_btns{
	margin-bottom: 30px;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	row-gap: 8px;
}
.details-form .menu_btns .custom-btn{
	color: var(--theme-color);
	margin-right: 8px;
	background-color: transparent;
}
.details-form .menu_btns .custom-btn i{
	color: var(--theme-color);
	margin-right: 10px;
}
.details-form .menu_btns .custom-btn:hover{
	color: var(--white);
	background-color: var(--theme-color);
}
.details-form .menu_btns .custom-btn:hover i{
	color: var(--white);
}


@media(min-width: 1920px){
	.personal-info{
		height: 100vh;
	}
}
@media(min-width: 2560px){
	.form-sec{
		position: absolute;
		top: 50%;
		left: 50%;
		width: 100%;
		max-width: 620px;
		transform: translate(-50%,-50%);
	}
}
@media screen and (max-width: 1470px) {
	#profile_page-sec > .uk-row > .uk-col_2 > .container_uk > .cards_row > .cards_col > .card{
		height: 250px;
		width: 200px;
	}
}
@media screen and (max-width: 1400px) {
	#profile_page-sec > .uk-row > .uk-col_2 > .container_uk > .cards_row > .cards_col > .card{
		height: 200px;
		width: 150px;

	}
	#profile_page-sec > .uk-row > .uk-col_1{
		flex-basis: 30%;
	}
	#profile_page-sec > .uk-row > .uk-col_2{
		flex-basis: 70%;
	}
	.template-col-img img{
		height: 210px;
	}
	.recently-items .template-col-img img {
		height: 130px;
	}
}
@media screen and (max-width: 1280px) {
	#profile_page-sec > .uk-row > .uk-col_2 > .container_uk > .cards_row > .cards_col > .card{
		height: 180px;
		width: 130px;
	}
	#profile_page-sec > .uk-row > .uk-col_1{
		flex-basis: 40%;
	}
	#profile_page-sec > .uk-row > .uk-col_2{
		flex-basis: 60%;
	}
	.summary-cards-row{
		margin: 0 -10px;
	}
	.summary-card-col {
		padding: 0 10px;
	}
	.button-block a {
		width: 200px;
	}
	.dashboard-content-col{
		padding-right: 10px;
	}
	.dashboard-sidebar-sec{
		padding-left: 10px;
	}
	.main-sec{
		padding-left: 105px;
		padding-right: 15px;
	}
	.dashboard-sec {
		padding: 0 15px 17px 105px;
	}
	.dashboard-content,
	.dashboard-sidebar{
		padding: 20px 15px;
	}
	.template-col-img img {
		height: 150px;
	}
	.recently-items .template-col-img img {
		height: 100px;
	}
	.card-info p,
	.card-info h4{
		font-size: 14px;
	}

}
@media screen and (max-width: 1023px) {
	#profile_page-sec > .uk-row{
		flex-wrap: wrap;
		gap: 20px;
	}
	#profile_page-sec > .uk-row > .uk-col_1{
		flex-basis: 50%;
	}
	#profile_page-sec > .uk-row > .uk-col_2{
		flex-basis: 50%;
	}
	.login-signup-sec{
		height: auto;
	}
	h1{
		font-size: 32px;
	}
	.sidebar{
		width: 70px;
		padding: 0 10px;
	}
	.sidebar li a{
		width: 44px;
		height: 44px;
	}
	.sidebar-logo{
		margin: 10px 0 60px;
	}
	.main-sec{
		padding-left: 85px;
	}
	.dashboard-sec{
		padding-left: 85px;
	}
	.card-info p, .card-info h4 {
		font-size: 12px;
	}
	.template-col {
		/* width: 100%;
		max-width: 50%; */
		padding: 0 8px 15px;
	}

	.dashboard-sidebar-sec .recently-items .template-col-bottom{
		max-width: calc(100% - 110px);

	}

	.dashboard-sidebar-sec  .template-col-icon img{
		display: block;
		width: 6px;
	}
	.button-sec a{
		font-size: 14px;
		width: 220px;
		height: 50px;
		padding: 15px;
	}

}
@media screen and (max-width: 767px) {
	*{
		font-size: 12px;
	}
	#profile_page-sec > .uk-row > .uk-col_1{
		flex-basis: 100%;
	}
	#profile_page-sec > .uk-row > .uk-col_2{
		flex-basis: 100%;
	}
	.logo-sec a{
		width: 92px;
		display: inline-block;
	}
	.login-signup-sec{
		height: 100vh;
		display: flex;
		padding: 40px 0;
		align-items: center;
		justify-content: center;
		background-size: cover;
		background-position: center;
	}
	.personal-info{
		width: 300px;
		margin: 0 auto;
		border-radius: 8px;
		background-color: var(--white);
	}
	.login-signup-sec .personal-info{
		max-width: 100%;
	}
	.logo-sec{
		padding: 50px 20px 0;
	}
	.form-sec{
		padding: 16px 20px 50px;
	}
	h1{
		font-size: 20px;
		line-height: 24px;
		margin-bottom: 12px;
	}
	.form-sec .welcome-back{
		font-size: 14px;
		line-height: 21px;
		margin-bottom: 16px;
	}
	.button-block a {
		width: 110px;
		height: 38px;
		font-size: 12px;
	}
	.form-field{
		padding: 0px 20px;
		font-size: 14px;
	}
	.details-form input{
		height: 50px;
	}
	.details-form input[type=radio]{
		height: auto;
		margin-top: 10px;
	}
	.label-top{
		font-size: 14px;
	}
	.form-field::placeholder,
	.form-field:-webkit-autofill,
	.form-field:-webkit-autofill:hover,
	.form-field:-webkit-autofill:focus {
		font-size: 14px;
	}
	.custom-btn{
		height: 38px;
	}
	.summary-cards-row{
		flex-wrap: wrap;
	}
	.summary-card-col{
		width: 50%;
		margin-bottom: 20px;
	}
	.summary-card-col:last-child {
		width: 100%;
	}
	.main-sec{
		padding-bottom: 0;
	}
	.dashboard-sec-row{
		flex-wrap: wrap;
	}
	.dashboard-content-col{
		width: 100%;
		margin-bottom: 20px;
		padding-right: 0;
	}
	.dashboard-sidebar-sec{
		width: 100%;
		padding-left: 0;
	}
	.button-sec{
		padding-top: 20px;
	}
	.sidebar{
		left: -100%;
		transition: all 0.3s ease;
	}
	.sidebar.active{
		left: 0;
		transition: all 0.3s ease;
	}
	.main-sec{
		padding-left: 15px;
	}
	.dashboard-sec{
		padding-left: 15px;
	}
	.top-header{
		padding: 0 20px;
		justify-content: space-between;
	}
	.toggle-sidebar{
		display: flex;
		align-items: center;
	}
	.toggle-sidebar .logo{
		width: 100px;
	}
	.top-header{
		z-index: 99;
	}
	.sidebar-logo{
		margin-bottom: 40px;
	}
	.logo-arrow{
		transform: rotate(-90deg);
	}
	.sign-up-page{
		height: auto;
	}
	.avatar-img-sec {
		width: 130px;
		height: 130px;
	}
	.details-form-block{
		margin-bottom: 25px;
	}
	.details-form {
		padding-bottom: 25px;
	}
	.fb4 {
		flex-basis: 48%;
		margin-bottom: 30px;
	}
}
@media screen and (max-width: 575px) {
	.summary-card-col{
		width: 100%;
	}
	.template-col-img img{
		height: 229px;
	}
	.recently-items .template-col-img{
		width: 77px;
	}
	.recently-items .template-col-img img{
		height: 77px;
	}
	.details-form .form-group{
		max-width: 100%;
		padding: 0;
	}
	.icon-field::before {
		left: 15px;
	}
	.icon-field input {
		padding-left: 45px;
	}
	.account-setting{
		margin-bottom: 20px;
	}
	.avatar-profile-links{
		margin-left: 15px;
	}
	.dynamic-row form{
		margin: 0;
	}
	.fb4 {
		flex-basis: 100%;
		margin-bottom: 25px;
	}
}

.image-upload>input {
  display: none;
}

.image-upload > label {
  cursor: pointer;
}



/* Account Verification
==============================*/
.account-verfication-page{
	background-color: #F4F4F4;
}
.account-verfication-page img{
	display: inline;
	margin: 0 auto;
}
.account-verification{
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 400;
	font-size: 24px;
	line-height: 36px;
	color: #1B4175;
}
.account-verification:hover{
	color: #1B4175;
}
.white-box{
	padding: 27px 20px;
	border-radius: 12px;
	background: #FFFFFF;
	margin: 10px 0 15px 0;
}
.heading-account{
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #1B4175;
	margin: 0;
}
.sub-heading-account{
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #1B4175;
	margin: 7px 0px 0px;
}
.p-account{
	margin-top: 5px;
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 18px;
	color: #666666;
}

.submit-cnic-sms{
	background: #D9FFE6;
	border-radius: 8px;
	text-align: center;
	height: 114px;
	margin-top: 40px;
	padding: 32px 75px;
}
.submit-cnic-sms p{
	margin-top: 8px;
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 18px;
	color: #666666;
	text-align: center;
}

.white-box .p-account{
	width: 640px;
}
.drop-sms{
	margin-top: 40px;
	display: flex;
	justify-content: start;
	align-items: center;
}
.drop-box{
	height: 194px;
	width: 358px;
	display: flex;
	padding: 25px;
	background: #E5F5FB;
	border-radius: 8px;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: flex-start;
}
.upload-box{
	display: block;
	align-items: center;
}
.max-file{
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 500;
	font-size: 12px;
	line-height: 18px;
	color: #7F7F7F;
	margin: 9px 0 0 0 ;
}
.drop-box a{
	text-align: center;
}
.star{
	color: #DC1919;
}

.or{
	padding: 35px 37px;
}
.or p{
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #1B4175;
}
.sms-box{
	width: 549px;
	height: 194px;
	padding: 35px 30px;
	background: #E5F5FB;
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: top;
}
.info-circle{
	margin: 0 8px 0 0;
}
.sms-text .p-account{
	width: 350px;
}
.resend-link{
	width: 197px;
	height: 40px;
	margin-top: 10px;
	padding: 8px 16px;
	background: #B3D1EC;
	text-align: center;
	color: var(--white);
	border-radius: 12px;
	display: flex;
	vertical-align: middle;
}
.resend-link:hover{
	color: var(--white);
}
.resend-link span{
	text-align: center;
	color: var(--white);
}
.resend-link span:hover{
	text-align: center;
	color: var(--white);
}
.email-text{
	margin-top: 0px !important;
}
.email-and-button{
	display: flex;
	justify-content: start;
	align-items: center;
	margin: 20px 0 0 0;
}

.email-label-input{
	display: block;
	position: relative;
}
.email-label-input label input{
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 300;
	font-size: 16px;
	line-height: 24px;
}
.email-label{
	display: block;
	margin-left: 20px;
	padding: 0 8px;
	width: auto;
	height: 24px;
	background-color: var(--white);
	position: absolute;
	top: -3px;
}
.email-label-input .email-label{
	color: #666666;
}
.email-label-input input{
	border: 1px solid #DDDDDD;
	border-radius: 12px;
	width: 554px;
	height: 54px;
	padding: 12px 20px;
	margin: 8px 0;
	box-sizing: border-box;
	color: #000;
}
.email-label-input input::placeholder{
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #0466BF;
	padding: 15px 0px;
}
.send-otp{
		width: auto;
    height: 40px;
    padding: 8px 16px;
    background: #0466BF;
    text-align: center;
    color: var(--white);
    border-radius: 12px;
    display: flex;
    vertical-align: middle;
}
.otp-code{
	display: flex;
	justify-content: start;
	align-items: center;
	margin: 12px 0 0 0;
}
.otp-input input{
	width: 17px;
	border: 0;
	border-bottom: 1px solid #DDDDDD;
	color: var(--black);
	text-align: center;
	padding: 0.5px 0;
}
.otp-input input:focus-visible{
	width: 17px;
	border: 0;
	border-bottom: 1px solid #DDDDDD;
	outline-color: transparent;
}
.send-otp:hover{
	color: var(--white);
}
.form-placeholder:focus {
    outline-color: var(--theme-color);
}

.heading-account img{
	margin-left: 12px;
    display: inline-block;
    vertical-align: middle;
}
.dashboard-back-btn{
	margin-top: 5px;
	display: flex;
	justify-content: end;
	align-items: center;
}
.dashboard-btn{
    height: 58px;
	width: fit-content;
    background: #0466BF;
    text-align: center;
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	padding: 17px 16px;
	margin-top: 3px;
}
.dashboard-btn:hover{
	color: var(--white);
}
.dashboard-btn img{
	margin-top: 4px;
	margin-right: 8px;
}


/* ---witness-info-collection--- */
.witnesses-detail-form{
	max-width: 853px;
}
.witnesses-detail-form h3{
	margin-bottom: 10px;
}
.witnesses-member-info{
	/* display: flex;
	justify-content: space-between; */
	/* align-items: center; */
}
.witnesses-wrapper{
	row-gap: 20px;
}
.witnesses-wrapper .witness:nth-child(odd){
	flex: 50%;
}
.witness-block {
		background: #fafafa;
    padding: 15px 10px;
    border-radius: 12px;
		margin-top: 10px;
}
.witnesses-detail-form input,
.witnesses-detail-form select,
.witnesses-detail-form .form-field[type=date]{
	color: #000;
	background-color: #E5E9EF;
	border: 1px solid #E5E9EF;
}
.witnesses-detail-form input::placeholder,
.witnesses-detail-form select::placeholder{
	color: #7F7F7F;
}
.form-group-right{
	width: 375px;
}
.form-group-left{
	width: 375px;
}
.form-group-right label{
	display: block;
	font-size: 12px;
	margin-bottom: 8px;
	font-family: 'Poppins';
	color:#7f7f7f;
}
.form-group-left label{
	display: block;
	font-size: 12px;
	margin-bottom: 8px;
	font-family: 'Poppins';
	color:#7f7f7f;
}
.add-witnesses-detials{
	display: flex;
	justify-content: start;
	align-items: center;
}
.add-witnesses-detials a{
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 500;
	font-size: 12px;
	line-height: 18px;
	color: #0466BF;
}
.add-witnesses-label img{
	margin-top: 4px;
	margin-right: 4px;
}



/* ---End-witness-info-collection--- */
@media(min-width: 1920px){
	.personal-info{
		height: 100vh;
	}
}
@media(min-width: 2560px){
	.form-sec{
		position: absolute;
		top: 50%;
		left: 50%;
		width: 100%;
		max-width: 620px;
		transform: translate(-50%,-50%);
	}
}
@media screen and (max-width: 1470px) {
	#profile_page-sec > .uk-row > .uk-col_2 > .container_uk > .cards_row > .cards_col > .card{
		height: 250px;
		width: 200px;
	}
}
@media screen and (max-width: 1400px) {
	#profile_page-sec > .uk-row > .uk-col_2 > .container_uk > .cards_row > .cards_col > .card{
		height: 200px;
		width: 150px;

	}
	#profile_page-sec > .uk-row > .uk-col_1{
		flex-basis: 30%;
	}
	#profile_page-sec > .uk-row > .uk-col_2{
		flex-basis: 70%;
	}
	.template-col-img img{
		height: 210px;
	}
	.recently-items .template-col-img img {
		height: 130px;
	}
}
@media screen and (max-width: 1280px) {
	#profile_page-sec > .uk-row > .uk-col_2 > .container_uk > .cards_row > .cards_col > .card{
		height: 180px;
		width: 130px;
	}
	#profile_page-sec > .uk-row > .uk-col_1{
		flex-basis: 40%;
	}
	#profile_page-sec > .uk-row > .uk-col_2{
		flex-basis: 60%;
	}
	.summary-cards-row{
		margin: 0 -10px;
	}
	.summary-card-col {
		padding: 0 10px;
	}
	.button-block a {
		width: 200px;
	}
	.dashboard-content-col{
		padding-right: 10px;
	}
	.dashboard-sidebar-sec{
		padding-left: 10px;
	}
	.main-sec{
		padding-left: 105px;
		padding-right: 15px;
	}
	.dashboard-sec {
		padding: 0 15px 17px 105px;
	}
	.dashboard-content,
	.dashboard-sidebar{
		padding: 20px 15px;
	}
	.template-col-img img {
		height: 150px;
	}
	.recently-items .template-col-img img {
		height: 100px;
	}
	.card-info p,
	.card-info h4{
		font-size: 14px;
	}

}
@media screen and (max-width: 1023px) {
	#profile_page-sec > .uk-row{
		flex-wrap: wrap;
		gap: 20px;
	}
	#profile_page-sec > .uk-row > .uk-col_1{
		flex-basis: 50%;
	}
	#profile_page-sec > .uk-row > .uk-col_2{
		flex-basis: 50%;
	}
	.login-signup-sec{
		height: auto;
	}
	h1{
		font-size: 32px;
	}
	.sidebar{
		width: 70px;
		padding: 0 10px;
	}
	.sidebar li a{
		width: 44px;
		height: 44px;
	}
	.sidebar-logo{
		margin: 10px 0 60px;
	}
	.main-sec{
		padding-left: 85px;
	}
	.dashboard-sec{
		padding-left: 85px;
	}
	.card-info p, .card-info h4 {
		font-size: 12px;
	}
	.template-col {
		/* width: 100%;
		max-width: 50%; */
		padding: 0 8px 15px;
	}

	.dashboard-sidebar-sec .recently-items .template-col-bottom{
		max-width: calc(100% - 110px);

	}

	.dashboard-sidebar-sec  .template-col-icon img{
		display: block;
		width: 6px;
	}
	.button-sec a{
		font-size: 14px;
		width: 220px;
		height: 50px;
		padding: 15px;
	}

}
@media screen and (max-width: 767px) {
	*{
		font-size: 12px;
	}
	#profile_page-sec > .uk-row > .uk-col_1{
		flex-basis: 100%;
	}
	#profile_page-sec > .uk-row > .uk-col_2{
		flex-basis: 100%;
	}
	.logo-sec a{
		width: 92px;
		display: inline-block;
	}
	.login-signup-sec{
		height: 100vh;
		display: flex;
		padding: 40px 0;
		align-items: center;
		justify-content: center;
		background-size: cover;
		background-position: center;
	}
	.personal-info{
		width: 300px;
		margin: 0 auto;
		border-radius: 8px;
		background-color: var(--white);
	}
	.login-signup-sec .personal-info{
		max-width: 100%;
	}
	.logo-sec{
		padding: 50px 20px 0;
	}
	.form-sec{
		padding: 16px 20px 50px;
	}
	h1{
		font-size: 20px;
		line-height: 24px;
		margin-bottom: 12px;
	}
	.form-sec .welcome-back{
		font-size: 14px;
		line-height: 21px;
		margin-bottom: 16px;
	}
	.button-block a {
		width: 110px;
		height: 38px;
		font-size: 12px;
	}
	.form-field{
		padding: 0px 20px;
		font-size: 14px;
	}
	.details-form input{
		height: 50px;
	}
	.details-form input[type=radio]{
		height: auto;
		margin-top: 10px;
	}
	.label-top{
		font-size: 14px;
	}
	.form-field::placeholder,
	.form-field:-webkit-autofill,
	.form-field:-webkit-autofill:hover,
	.form-field:-webkit-autofill:focus {
		font-size: 14px;
	}
	.custom-btn{
		height: 38px;
	}
	.summary-cards-row{
		flex-wrap: wrap;
	}
	.summary-card-col{
		width: 50%;
		margin-bottom: 20px;
	}
	.summary-card-col:last-child {
		width: 100%;
	}
	.main-sec{
		padding-bottom: 0;
	}
	.dashboard-sec-row{
		flex-wrap: wrap;
	}
	.dashboard-content-col{
		width: 100%;
		margin-bottom: 20px;
		padding-right: 0;
	}
	.dashboard-sidebar-sec{
		width: 100%;
		padding-left: 0;
	}
	.button-sec{
		padding-top: 20px;
	}
	.sidebar{
		left: -100%;
		transition: all 0.3s ease;
	}
	.sidebar.active{
		left: 0;
		transition: all 0.3s ease;
	}
	.main-sec{
		padding-left: 15px;
	}
	.dashboard-sec{
		padding-left: 15px;
	}
	.top-header{
		padding: 0 20px;
		justify-content: space-between;
	}
	.toggle-sidebar{
		display: flex;
		align-items: center;
	}
	.toggle-sidebar .logo{
		width: 100px;
	}
	.top-header{
		z-index: 99;
	}
	.sidebar-logo{
		margin-bottom: 40px;
	}
	.logo-arrow{
		transform: rotate(-90deg);
	}
	.sign-up-page{
		height: auto;
	}
	.avatar-img-sec {
		width: 130px;
		height: 130px;
	}
	.details-form-block{
		margin-bottom: 25px;
	}
	.details-form {
		padding-bottom: 25px;
	}
	.fb4 {
		flex-basis: 48%;
		margin-bottom: 30px;
	}
}
@media screen and (max-width: 575px) {
	.summary-card-col{
		width: 100%;
	}
	.template-col-img img{
		height: 230px;
	}
	.recently-items .template-col-img{
		width: 77px;
	}
	.recently-items .template-col-img img{
		height: 77px;
	}
	.details-form .form-group{
		max-width: 100%;
		padding: 0;
	}
	.icon-field::before {
		left: 15px;
	}
	.icon-field input {
		padding-left: 45px;
	}
	.account-setting{
		margin-bottom: 20px;
	}
	.avatar-profile-links{
		margin-left: 15px;
	}
	.dynamic-row form{
		margin: 0;
	}
	.fb4 {
		flex-basis: 100%;
		margin-bottom: 25px;
	}
}
/* Custom Class for agreementDetail date field */

.dateField{
	text-transform: uppercase;
}

.form-email-otp-block{

	display: flex;
	width: 100%;
}

#preview img { 
	max-height: 25px; 
}

.nic-submit {
	border-radius: 3px;
	background: #0466bf;
	color: #fff;
	padding: 2px 5px;
	font-size: 8px;
	box-shadow: none;
}

.spin {
  animation: spin-animation 1.5s infinite;
}
@keyframes spin-animation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.stamp-banner img {
	width: 100%;
}
.template-data {
	padding: 30px 60px;
	text-align: justify;
}

ol:not(nav ol) {
	list-style: auto !important;
}

div[style*="page-break-after"] {
	border-top: 4px dotted #ccc;
	padding: 10px 0;
	margin: 10px 0 0;
	text-align: center;
}
div[style*="page-break-after"] div {
	margin-top: -24px;
	left: 44%;
}
.l-43 {
	left: 43%;
}
@media print {
  .main-sec{
		padding: 0;
	}
	img {
		visibility: hidden;
	}
	div[style*="page-break-after"] {
		visibility: hidden;
    border-top: none;
    padding: 0;
    margin: 0;
	}
}
.cke_contents {
	min-height: 400px;
}
.paginate{
	display: flex;
	justify-content: center;
}
.dashboard-content-cols{
	width: 100%;
}

/* Create new template  */
.top_icon_detail{
	display: flex;
	justify-content: space-between;
}
.content_title{
	font-size: 12px;
	font-weight: 400;
	color:#7F7F7F;
	line-height: 18px;
	font-family:'Poppins';

}
.content_prefix{
	font-size: 12px;
	font-weight: 400;
	color:#7F7F7F;
	line-height: 18px;
	font-family:'Poppins';
	padding: 10px 0;
}
.party_heding{
	font-family:'Poppins';
	font-size: 20px;
	font-weight: 500;
	line-height: 30px;
	letter-spacing: 0em;
	padding-bottom: 15px;

}
.party_top_bar{
	color: #45464E;
	font-family:'Poppins';
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	letter-spacing: 0em;
	padding-bottom: 8px;

}
.fa-plus{
	color: #fff;
	font-family: 'Poppins';
     font-size: 24px;
}
.add_btn_party a{
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		padding: 8px;
		gap: 10px;
		width: 126px;
		height: 40px;
		background: #0466BF;
		border-radius: 12px;
		color: #fff;
		font-size: 16px;
		font-weight: 300;
		line-height: 24px;
		letter-spacing: 0em;
		text-align: center;
}

.party-block {
	border: 1px solid #ddd;
	padding: 10px;
	border-radius: 10px;
	margin-bottom: 20px;
}
.btn-disabled {
	opacity: 0.6;
	cursor: not-allowed;
  }

  .template-centered-title {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);width: max-content;font-weight: 500;
  }

  .btn-active {
	background-color:#00401A !important;
	color: #ffffff !important;
  }