body{
	font-family: "Poppins";
}
a{
	color: #000000;
}
a:hover {
    color: #000;
}
/* Form */
.form-control:focus{
	box-shadow: none;
	border-color: #000;
}
.form-check-input:checked {
    background-color: #333333;
    border-color: #333333;
}
.custom-control-label::before{
	background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .25);
}
.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: #000;
    background-color: #000;
}
/* btn */
.btn:focus, .btn.focus {
    outline: 0;
    box-shadow: none;
}
.btn-dark-primary{
	background: #fff;
	border: 1px solid #fff;
	color: #000;
}
.btn-dark-primary:hover{
	background: #fff;
	border: 1px solid #fff;
	color: #000;
}
.btn-primary {
    color: #fff;
    background-color: #000;
    border-color: #000;
}
.btn-primary:hover {
    color: #fff;
    background-color: #171717;
    border-color: #171717;
}
.btn-primary:focus, .btn-primary.focus,
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #000;
    border-color: #000;
    box-shadow: none;
}
.btn-outline-primary {
    color: #000;
    border-color: #000;
}
.btn-outline-primary:hover {
    color: #fff;
    background-color: #000;
    border-color: #000;
}
.btn-custom.active {
    color: #000000;
    border: 1px solid #000000;
	background: #ffffff;
}
.btn-table img{
	width: 26px;
	min-width: 26px;
}
/* custom */
img,
svg{
	max-width: 100%;
}

.app-container,
.app,
.admin-container {
    background-color: #E0E0E0;
}
.authform{
	background-image: url('../images/test-drive-gradient.jpg');
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100vh;
	flex-direction: column;
    display: flex;
}
.authform-info {
    padding: 20px;
    color: white;
    background-color: rgba(0, 0, 0, 0.8);
	flex-grow: 1;
}
.authform-info-inner {
	min-width: 440px;
	width: inherit;
}
.authform-description{
	padding: 20px;
}

.logo-img {
	max-width: 230px;
}

.custom-row,
.card,
.app-footer,
.table-custom-container{
	border-radius: 10px;
}
.card{
	box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
}
.app-sidebar{
	display: flex;
    flex-direction: column;
    min-width: 260px;
    max-width: 260px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--border-radius);
    margin: 3rem 1.5rem 3rem -300px;
    transition: margin-left .15s linear, margin-right .15s linear;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
	z-index: 4;
}
body.app-sidebar-opened .app-sidebar {
    margin: 70px 0 0 0;
}
.app-main-wrapper{
	padding: 100px 0 20px 0;
}
.app-main-wrapper-footer{
	padding: 20px 0;
}

.app-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: var(--gray-100);
    z-index: 3;
    opacity: .5;
}
.btn-menu-small {
    position: absolute;
    bottom: 0px;
    right: 0;
    transition: all 0.3s;
    border-radius: 8px 0 20px 0;
}
.btn-menu-small:hover {
    background: #fff;
    border-color: #e0e0e0;
}
.nav--small .btn-menu-small img {
    transform: rotate(180deg);
}
.app-sidebar-title {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .5rem;
    margin: .5rem;
    height: 90px;
    min-height: 90px;
}
.app-sidebar .app-sidebar-title {
    display: none;
}


.app-sidebar-links > li.active > a:not(.default){
	color: #000;
    background-color: #e0e0e0;
}
.app-sidebar-links-wrapper{
	overflow-y: scroll;
    padding-bottom: .25rem;
    scrollbar-width: none;
	width: 100%;
}
.app-sidebar-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}
.app-sidebar-links > li {
    width: 100%;
    padding: 0.25rem calc(1rem - 6px) 0.25rem 1rem;
}
.app-sidebar-links > li > a {
    width: 100%;
    display: flex;
    align-items: center;
    border-radius: 0.35rem;
    padding: 0.5rem 0.5rem;
    transition: background .3s;
    font-size: 1rem;
    color: #000000;
	font-weight: 400;
	list-style: none;
	text-decoration: none;
}
.app-sidebar-links > li > a > svg{
	font-size: 20px;
	min-width: 24px;
}
.app-sidebar-footer > a{
	padding: 5px;
}
.app-sidebar-links > li > a:hover{
	color: #000;
	list-style: none;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff;
    background-color: #000000;
}
.app-sidebar-links .submenu{
	width: 100%;
}
.app-sidebar-links .submenu > li{
	padding: 0.25rem 0 0.25rem 5px;
}
.app-sidebar-links .submenu > li > a {
	width: 100%;
    display: flex;
    align-items: center;
	padding: 0.75rem 1rem;
    transition: background .3s;
    font-size: .9rem;
	color: #000;
}
.app-sidebar-links .submenu > li.active > a{
	color: #000;
    background-color: #e0e0e0;
    border-radius: 15px 0 0 15px;
}
.app-sidebar-links .submenu > li > a > svg{
	font-size: 22px;
}
.submenu-drop-icon{
	background: #414141;
    height: 24px;
    width: 24px;
    padding: 4px;
    margin-left: auto;
}
/* header-top-main */
.header {
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
}
body.app-sidebar-opened .app-sidebar{
	margin: 70px 0 0 0;
}
.app-navbar {
	background: #f8f9fa;
	position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    width: 100%;
	padding: 7px 1rem;
	min-height: 70px !important;
}
.header-top-main{
	display: flex;
	align-items: center;
	width: 100%;
}
.header-top-main .app-sidebar-footer{
	width: auto;
	margin-left: auto;
}
.header-top-main .navbar-logo{
    max-height: 25px;
}

.btn-header-add{
	padding: 6px 25px;
    font-size: 18px;
}
.menuDragList{
	max-height: 500px;
	overflow: hidden;
    overflow-y: auto;
}
.menuDragList > li > a{
	padding: .5rem 1rem;
	font-size: 16px;
}
.menuDragList > li > a svg{
	min-width: 20px;
}
.dropdown .dropdown-quick-link{
	background-color: rgb(247, 246, 246);
    box-shadow: 0 12px 28px 0 lightgrey;
    border: 1px solid rgb(0 0 0 / 18%);
    padding: 20px;
    padding-top: 30px;
}
.dropdown-quick-link-inner{
    background: #fff;
    box-shadow: 0 1px 2px lightgrey;
    border-radius: 10px;
	padding: 10px;
}
.menu-right-links{
	display: flex;
	align-items: center;
	column-gap: 20px;
}
.menu-right-links .right-link-item{
	background-color: #e6e6e6;
    height: 30px;
    width: 30px;
    min-width: 30px;
    border-radius: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
	position: relative;
	font-size: 14px;
}
.menu-right-links .right-link-item[data-count]:after{
	position: absolute;
    right: -25%;
    top: 1%;
    content: attr(data-count);
    font-size: 50%;
    padding: .6em;
    border-radius: 999px;
    line-height: .75em;
    color: white;
    background: rgba(255, 0, 0, .85);
    text-align: center;
    min-width: 2em;
    font-weight: bold;
}
.dropdown-quick-big{
	width: 500px;
}
.drop-list-big,
.drop-list-big-right{
	max-height: 500px;
    overflow: hidden;
	overflow-y: auto;
}
.drop-list-big a,
.drop-list-big-right a{
	padding: .5rem 1rem;
    font-size: 14px;
	display: flex;
	column-gap: 10px;
    align-items: center;
	text-decoration: none;
}
.drop-list-big a:hover,
.drop-list-big-right a:hover{
	background-color: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    cursor: pointer;
}
.drop-list-big-right img{
	padding: 5px;
    border-radius: 50%;
    background-color: lightgrey;
	width: 30px;
}
.dropdown-quick-m{
	min-width: 293px;
}
.drop-cu-list > a{
	gap: 10px;
	border-radius: 15px;
    padding: 10px;
	align-items: center;
	font-size: 14px;
	text-decoration: none;
}
.drop-cu-list > a:hover{
    background-color: #f2f2f2;
}
.drop-cu-list > a img{
	min-width: 32px;
    height: auto;
}
/* header End */
.text-primary {
    color: #2196F3 !important;
}
.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #000000;
}
.dropdown-item{
	color: #000000;
}
.dropdown-item svg {
    color: #000000;
}
.biolink-preview-iframe-container{
	border-radius: 60px;
    border: 0;
}
.biolink-preview-iframe{
	position: absolute;
	top: 38px;
	left: 11px;
	width: calc(100% - 21px);
	bottom: 30px;
	height: calc(100% - 83px);
}
/* .dropdown .dropdown-menu{
    box-shadow: 0px 6px 16px 0 #bcbcbc;	
} */

#qr_code{
	max-width: 250px;
    margin: 0 auto;
}
.app-sidebar-footer-text {
    color: #000000;
}
.app-sidebar-footer > a:hover {
    background: transparent;
}
.header-search-area {
    position: relative;
	display: none;
}
.search-box-icon {
    column-gap: 5px;
    border: none;
    border-radius: 20px;
    background-color: rgb(228, 228, 250);
    width: 100%;
    padding: 8px 15px;
	display: flex;
}
.search-box-icon input {
    background-color: transparent;
    border: none;
    outline: none;
	margin-left: 10px;
}
.link-box-icon > span > .fa-circle{
	color: #000 !important;
}
.custom-row-list-wraper{
	padding: 0;
}
.header-quick-link{
	display: flex;
	align-items: center;
	margin: 0 auto;
}
.header-quick-link > a{
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	padding: 15px 30px;
	cursor: pointer;
}

.app-content{
	min-height: 100vh
}
.notification-avatar{
	background: rgb(0 0 0 / 16%);
	color: #000000;
}
.menuDragList-icon{
	min-width: 30px;
    margin-right: 15px;
}

/* DATA page */

.data-box-bar{
	display: flex;
    column-gap: 20px;
    height: max-content;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    width: 100%;
}
.page-icons-list{
	display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #e6e6e6;
    border-radius: 15px;
    height: max-content;
    padding: 10px;
	width: 85%;
}
.contact-page-navbar-actions{
	width: 15%;
}
.contact-page-navbar-icons-with-number {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #333333;
    color: #fff;
    border-radius: 15px;
    padding: 6px;
    justify-content: space-between;
    column-gap: 10px;
    width: 110px;
}

.contact-page-navbar-icons img {
    width: 30px;
}
.contact-page-navbar-icons-with-number p {
    font-size: 14px;
    font-weight: 500;
    padding-right: 5px;
	margin: 0px;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #000000;
}
.table-card{
	width: 100%;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}
.table-card-head{
	padding: 15px 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    font-weight: 600;
    border-bottom: 2px solid #303030;
    background: #e0e0e0;
}
.table-card-body{
	padding: 20px;
}
.record-utility {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    padding: 5px 15px;
    border-radius: 10px;
    gap: 15px;
    column-gap: 5px;
    padding-top: 5px;
    background-color: #fff;
    flex-wrap: wrap;
}
.record-utility-controls{
	margin-right: 15px;
	width: 100px;
}
.data-table-record-search .input-group-text{
    border-radius: .35rem 0 0 .35rem;
}
.data-table-record-search .dataTables_filter {
    background: white;
    border-radius: 0 10px 10px 0;
    flex: 1 0 0%;
    height: 45px;
}
.data-table-record-search .dataTables_filter input {
    background: transparent;
    height: 45px;
    border: 0;
}
.btn-contact-page-navbar-actions{
	background-color: #e6e6e6;
    color: #000;
    height: 62px;
    width: 100%;
}
.btn-record-utility-action-item{
	padding: 0;
    background: transparent;
	border: 0;
}
.btn-record-utility-action-item:hover{
	border: 0;
	background: transparent;
}
.btn-record-utility-action-item img{
	width: 35px;
}
.custom-bioit-table-wrap .table{
	font-size: 12px;
	border-spacing: 0 1em;
	border-collapse: separate;
}
.custom-bioit-table-wrap .table tr th{
	font-size: 11px;
    color: #6D727E;
	text-transform: uppercase;
}
.custom-bioit-table-wrap .table tbody tr {
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.04);
}
.custom-bioit-table-wrap .table tr td:first-child, .custom-bioit-table-wrap .table tr th:first-child {
    padding-left: 20px !important;
}
.custom-bioit-table-wrap .table tr td:first-child {
    border-left: 1px solid #E9ECF2;
    border-radius: 12px 0 0 12px;
}
.custom-bioit-table-wrap .table tr td:last-child {
    border-right: 1px solid #E9ECF2;
    border-radius: 0 12px 12px 0;
}
.custom-bioit-table-wrap .table tr td {
    border-top: 1px solid #E9ECF2;
    border-bottom: 1px solid #E9ECF2;
    vertical-align: middle;
    padding: 20px 12px !important;
}
.custom-bioit-table-wrap .form-check-input{
	position: unset;
	margin: 0;
}
.max-drop-250 .dropdown-menu{
	overflow-y: auto;
    max-height: 250px;
	min-width: 180px;
    width: 100%;
}
.max-drop-250 .dropdown-item{
	padding: 8px 15px;
    margin-bottom: 5px;
}
.max-drop-250 .dropdown-item.active, .max-drop-250 .dropdown-item:active{
	color: #000;
    text-decoration: none;
    background-color: #dedede;
}
.msg-tag-drop{
	position: relative;
    display: inline-block;
}
.dropdown.msg-tag-drop:hover .dropdown-content {
    display: block;
}
.dropdown.msg-tag-drop .dropdown-content{
	display: none;
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    padding: 15px;
    z-index: 3;
	max-width: 420px;
    min-width: 420px;
	width: 100%;
}
.dropdown.msg-tag-drop .dropdown-content p{
	word-break: break-word;
}
span.merge-tag {
    cursor: pointer;
    font-size: 12px;
}
.remaining-characters-box{
    background-color: #E9E9E9;
    height: 40px;
    border-radius: 10px;
    border: none;
    padding: 10px;
}

@media (min-width: 768px) {
    .biolink-preview-iframe-container {
        width: 375px;
        height: 773px;
    }
	.biolink-preview-iframe{
		position: absolute;
		top: 49px;
		left: 11px;
		width: calc(100% - 21px);
		bottom: 30px;
		height: calc(100% - 100px);
	}
	.custom-row-list-wraper{
		padding: 0;
		padding: 1.25rem;
	}
}
@media (min-width: 991.98px) {
	.app-content {
        margin-left: 280px;
		transition: .25s ease-in-out;
    }
	.nav--small .app-content {
        margin-left: 100px;
    }
	.header-top-main .app-sidebar-footer{
		width: auto;
		margin-left: 0;
	}
	.header-top-main .navbar-brand{
		display: none;
	}
	.app-sidebar .app-sidebar-title{
		display: flex;
		text-align: center;
		background: #fff;
		margin: 0 0 20px;
		border-radius: 0 30px 30px 0;
		height: 90px;
		min-height: 90px;
		width: 105%;
	}
	.app-sidebar {
        margin-left: 0;
		margin-top: 100px;
		background: transparent;
		border: 0;
		z-index: 2;
		margin-bottom: 45px;
		transition: .25s ease-in-out;
    }
	.nav--small .app-sidebar {
		width: 80px;
    	min-width: 80px;
		transition: .25s ease-in-out;
	}
	.navbar-logo{
		max-height: 30px;
	}
	.nav--small .navbar-logo{
		height: auto;
	}
	.nav--small .btn-menu-small {
		bottom: -43px;
		right: 17px;
		border-radius: 8px 8px 8px 8px;
	}
	.app-sidebar-links-wrapper{
		background: #fff;
		border-radius: 0 20px 20px 0;
		direction: rtl;
		transition: .25s ease-in-out;
		width: 105%;
	}
	.app-sidebar-footer .dropdown-menu-right{
		left: 0;
		right: auto;
	}
	.app-sidebar-links > li > a > span,
	.app-sidebar-links .submenu > li > a > span {
		transition: .25s ease-in-out;
    }
	.nav--small .app-sidebar-links > li > a > span,
	.nav--small .app-sidebar-links .submenu > li > a > span,
	.nav--small .app-sidebar-links > li > a > .submenu-drop-icon {
        display: none;
		transition: .25s ease-in-out;
		white-space: nowrap;
    }
	.nav--small .app-sidebar-links-wrapper:hover{
		width: 250px;
		transition: .25s ease-in-out;
	}
	.nav--small .app-sidebar-links-wrapper:hover .app-sidebar-links > li > a > span,
	.nav--small .app-sidebar-links-wrapper:hover .app-sidebar-links .submenu > li > a > span,
	.nav--small .app-sidebar-links-wrapper:hover .app-sidebar-links > li > a > .submenu-drop-icon{
		display: inline;
	}
	.app-sidebar-links{
		direction: ltr;
		padding: 10px 0;
	}
	.app-sidebar-footer > a{
		padding: .75rem 10px;
		margin-right: 10px;
	}
	.app-sidebar-links > li{
		padding: 0.25rem 0 0.25rem 5px;
	}
	.app-sidebar-links > li.active > a:not(.default){
		border-radius: 20px 0 0 20px;
	}
	.app-main-wrapper{
		padding: 100px 15px 20px 0;
	}
	.app-main-wrapper-footer{
		padding: 5px 15px 0 0 ;
	}
    .authform {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 0px;
    }
	.authform-description {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 40%;
        color: black;
        row-gap: 15px;
    }
	.authform-info {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		width: 60%;
		min-height: 100vh;
		overflow: auto;
		padding: 20px;
		border-radius: 20px 0 0 20px;
		row-gap: 15px;
	}
	.custom-row,
	.card,
	.app-footer,
	.table-custom-container{
		border-radius: 20px;
	}
	.header-search-area{
		display: inline-block;
	}
	.app-sidebar-links > li > a:hover{
		color: #000;
		border-radius: 20px 0 0 20px;
	}
	.smsit-card-wrap{
		padding: 30px;
		background: #f0f0f0;
		border-radius: 10px;
	}
	.custom-row-side-controller {
		position: unset;
        padding: 7px 5px 5px;
	}
	
}

@media (min-width: 1200px) {
    .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 100%;
    }
}


@media (max-width: 767px) {
	.logo-img {
		max-width: 150px;
	}
	.authform-description h1{
		font-size: 22px;
	}
	.authform-info-inner{
		min-width: auto;
	}
	.data-box-bar {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
	.page-icons-list {
        flex-wrap: wrap;
        gap: 15px;
		width: 100%;
    }
	.contact-page-navbar-actions{
		width: 100%;
	}
    .contact-page-navbar-icons-with-number {
        width: 47%;
        flex-direction: column;
        gap: 10px;
        height: 80px;
        justify-content: center;
    }
	.record-utility {
        padding: 5px 10px;
    }
	.header-quick-link{
		display: none;
	}
}
@media (max-width: 991.98px) {
	.header-quick-link{
		display: none;
	}
	.header-top-noti{
		margin-left: auto;
	}
	.btn-menu-small{
		display: none;
	}
}
@media (max-width: 1100px) {
	.menu-right-links{
		display: none;
	}
}
@media (max-width: 1200px) {
	.header-quick-link > a{
		padding: 15px 15px;
	}
	.btn-header-add{
		padding: 6px 15px;
	}
}