:root { 
	--main-color: #64B145;
	--dark-text: #33324D;
	--dark-grey: #696974;
	--light-grey: #92929D;
	--main-light: #E6F8DF;
	--main-dark: #497836;
	--border-color: #f1f1f1;
}


html {
  font-family: 'Hind', sans-serif !important;
  background-color: unset !important;
}

body {
  font-family: 'Hind', sans-serif !important;
}

body.light-theme {
  background-color: #F4F8FD;
}

.tone{color: var(--main-color);}
.dark {color: var(--dark-color);}
.dark-tone {color: #C8B094;}
.dark-grey{color: var(--dark-grey);}
.light-grey{color: var(--light-grey);}
.white{color: white;}
.bold {font-weight: bold;}
.medium {font-weight: 500;}
.extra-bold {font-weight: 800;}
.text-right{
	text-align: right;
}
a.content-link{
	color: unset!important;
}
a.link{
	color: var(--main-color) !important;
}
a.link:hover{
	color: var(--main-dark) !important;
	text-decoration: underline !important;
}
.hoverable{
	color: var(--main-color) !important;
}
.hoverable:hover{
	color: var(--main-dark) !important;
}

i.bx{padding-top: 3px;}

.pointer{cursor: pointer;}

.fs10 {font-size: 10px;}
.fs12 {font-size: 12px;}
.fs14 {font-size: 14px;}
.fs18 {font-size: 18px;}
.fs20 {font-size: 20px;}
.fs22 {font-size: 22px;}
.fs26 {font-size: 26px;}
.fs30 {font-size: 30px;}
.fs40 {font-size: 40px;}

.tag.is-primary {
  background-color: var(--main-color) !important;
  color: white !important;
}
.tag.is-default {
  background-color: #F2E9DE !important;
  color: #33324D !important;
}


.tag.is-small{
	height: 1.5em !important;
}

/*---TAGS----*/

.state-tag{
	display: inline-block;
    padding: 3px 15px;
    border-radius: 8px;
    font-size: 14px; 
}
.state-tag.success{
	color: white;
	background-color: #64B145;
}
.state-tag.error{
	color: white;
	background-color: #CE5555;
}

/* BUTTONS */
.btn-vdv {
  border: none;
  padding: 12px 24px;
  border-radius: 4px !important;
  font-weight: 600;
  cursor: pointer;
}
.btn-outline.btn-tone{
	background-color: transparent !important;
	border: solid 1px var(--main-color) !important;
	color: var(--main-color) !important;
	padding: 12px 24px;
	border-radius: 4px !important;
	font-weight: 600;
	cursor: pointer;
}
.btn-vdv.btn-sm {
  border: none;
  padding: 8px 20px;
  font-size: 12px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}
.btn-vdv.btn-xs {
  border: none;
  padding: 4px 10px;
  font-size: 11px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}
.btn-vdv.btn-block{
	width: 100%;
}

.btn-icon{
	color: #8d939f;
    cursor: pointer;
    padding: 4px 8px !important; 
    border-radius: 4px;
    border: none !important;
}
.btn-icon:hover {
    background-color: #E8E8E8 !important;
}
.btn-icon-sm{
	color: #8d939f;
    cursor: pointer;
    padding: 2px 4px !important; 
    border-radius: 4px;
}

.btn:disabled{
	opacity: 0.5 !important;
	cursor: not-allowed !important;
}

.page-content {
  padding-top: 100px;
  /*padding-bottom: 100px;*/
  padding-left: 60px;
  transition: all 0.3s;
}
.page-content .container-fluid {
  max-width: 95%;
}
.page-content.collapsed{
	padding-left: 260px;
}
.overlay-menu{
	opacity: 0;
	pointer-events: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 30;
	width: 100%;
	height: 100%;
	background-color: rgb(87 87 107 / 26%);
	transition: all 0.3s;
}

@media (max-width: 992px) {
	.page-content{padding-left: 0;}
	.page-content.collapsed{padding-left: 0px;}
	.overlay-menu.visible{display: block; opacity: 1}
}


.light-theme .vdv-nav {
  border-bottom: solid 1px #f0f0f0;
  z-index: 31;
  position: fixed;
  width: calc(100% - 250px);
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  left: 250px;
  top: 0px;
  padding: 0 20px;
  transition: all 0.4s;
  background-color: white !important;
}
.light-theme .vdv-nav.collapsed {
	width: calc(100% - 60px);
	left: 60px;
}
.light-theme .vdv-nav .logo {
  margin-top: 10px;
  height: 30px;
}
.light-theme .vdv-nav .nav-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.light-theme .vdv-nav .nav-items > * + * {
  margin-left: 15px;
}
.light-theme .vdv-nav .vdv-user-avatar {
  width: 45px;
  height: 45px;
}
.light-theme .vdv-nav .vdv-user-avatar img {
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 992px) {
	.light-theme .vdv-nav.collapsed{
		width: 100%;
		left: 0;
	}
}

/*---SIDE BAR---*/
.light-theme .vdv-sidebar {
  z-index: 32;
  background-color: white;
  position: fixed;
  left: 0;
  width: 250px;
  top: 0px;
  padding: 15px 0;
  height: 100vh;
  border-right: solid 1px #ececec;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
    transition: all 0.4s;
}
.light-theme .vdv-sidebar.collapsed {
  width: 60px;
}
.light-theme .vdv-sidebar .nav-item-text {
	font-weight: 400;
	font-size: 14px;
	white-space: nowrap;
	transition: transform 0.3s;
	transform-origin: left;
}
.light-theme .vdv-sidebar .w-100 a{
  color:  var(--dark-grey) !important;
}
.light-theme .vdv-sidebar .nav-item {
	display: flex;
	align-items: center;
	padding: 13px 18px;
	cursor: pointer;
}
.light-theme .vdv-sidebar .nav-item.space-item{
	padding: 5px 2px;
	cursor: pointer;
}
.light-theme .vdv-sidebar .nav-item i{
	font-size: 24px;
	color: #9b9b9b;
}
.light-theme .vdv-sidebar .nav-item.active i{
	color: var(--main-color);
}
 
.light-theme .vdv-sidebar .space{
	cursor: pointer;
	transition: all 0.3s;
}
.light-theme .vdv-sidebar .space:hover{
	transform: scale(1.02);
}
.light-theme .vdv-sidebar .space-name{
	white-space: nowrap;
    text-overflow: ellipsis;
    width: 183px;
    overflow: hidden;
}

.light-theme .vdv-sidebar .nav-item:hover, .light-theme .vdv-sidebar .nav-item .active {
  border-radius: 5px;
  background-color: var(--main-light);
}
.light-theme .vdv-sidebar .nav-item.active {
  border-radius: 5px;
  background-color: var(--main-light);
}
.light-theme .vdv-sidebar .b-tooltip{
	width: 100%;
	text-align: center;
}
.light-theme .vdv-sidebar .divider{
	width: 100%;
	border-bottom: 0;
    border-top: 0;
    height: 1px;
	border: none;
    background: transparent;
    margin: 0.5rem 0;
    background-image: linear-gradient(57deg,transparent,rgb(107 106 169 / 40%),transparent);
}

.vdv-sidebar.collapsed .space-name{
	transform: scale(0);
	transform-origin: left;
}
.vdv-sidebar .space-name{
	transition: transform 0.3s;
	transform-origin: left;
}
.vdv-sidebar.collapsed .nav-item .nav-item-text{
	transform: scale(0);
	transform-origin: left;
}
.vdv-sidebar .tooltip {
	transform: scale(0);
	position: absolute;
	background-color: rgb(0 0 0 / 90%);
	border-radius: 4px;
	color: white;
	transition: all 0.1s;
	padding: 6px 6px;
	white-space: nowrap;
	font-weight: 500;
    font-size: 13px;
    left: calc(100% + 10px);
    position: absolute;
    transform-origin: left;
}
.vdv-sidebar.collapsed .nav-item:hover .tooltip{
	transform: scale(1);
}

@media (max-width: 992px) {
	.vdv-sidebar.collapsed {
		left: -60px;
	}
}

/*---BUTTONS---*/
.light-theme .btn-vdv.btn-dark {
  background-color: #33324D;
  color: white;
}
.light-theme .btn-vdv.btn-dark:hover {
  background-color: #1F1E2E;
  color: white;
}

.light-theme .btn-vdv.btn-tone {
  background-color: var(--main-color);
  border-color:  var(--main-color);
  color: white;
}
.light-theme .btn-vdv.btn-tone:hover {
  background-color:  var(--main-dark);
  border-color:  var(--main-dark);
  color: white;
}

.light-theme .btn-vdv.btn-default {
  background-color: var(--border-color);
  border-color:  var(--main-color);
  color: var(--dark-text);
}
.light-theme .btn-vdv.btn-default:hover {
  background-color:  var(--border-color);
  border-color:  var(--main-dark);
  color: var(--dark-text);
}

.light-theme .btn-vdv.btn-danger {
  background-color: #CE5555;
  border-color:  #CE5555;
  color: white;
}
.light-theme .btn-vdv.btn-danger:hover {
  background-color: #CE5555;
  border-color:  #CE5555;
  color: white;
}


/*---CARDS---*/
.light-theme .vdv-card {
	background: white;
	border: 1px solid #ececec;
	-webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.04);
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.04);
	border-radius: 10px;
}
.light-theme .vdv-card.opacity-card{
	opacity: 0.5;
	transition: all 0.3s;
}
.light-theme .vdv-card.opacity-card:hover{
	opacity: 1;
	cursor: pointer;
}
.light-theme .vdv-card.disabled{
	background-color: #e8e8e8!important;
	color: #b3b3b3!important;
}

/*---TABLES---*/
.b-table th{
	font-size: 14px !important;
    font-weight: normal !important;
}
.table td{
	vertical-align: middle !important;
}
.b-table.is-separate .table {
  margin-top: -8px;
  border-collapse: separate;
  border-spacing: 0 8px;
  background-color: transparent !important;
}
.b-table.is-separate .table tr {
  background: white;
  border: 1px solid #ececec;
  -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}
.b-table.is-separate .table th, .b-table.is-separate .table td {
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
}
.b-table.is-separate .table tr td:first-child, .b-table.is-separate .table tr th:first-child {
  border-left: 1px solid #ececec;
}
.b-table.is-separate .table tr td:last-child, .b-table.is-separate .table tr th:last-child {
  border-right: 1px solid #ececec;
}

.table tr.is-selected{
	background-color: #f5f4f4 !important;
	color: var(--dark-text) !important;
}

.table tr.selectable{
	cursor: pointer;
}
.table tr.selectable:hover{
	background-color: #f5f4f4 !important;
	color: var(--dark-text) !important;
}
		

/*---  TABS ---*/
.tabs li.is-active a {
    border-bottom-color: var(--main-color) !important;
    color: var(--main-color)!important;
    border-width: 2px !important;
}
.menu-list a.is-active {
    background-color:var(--main-color) !important;
    color: var(--dark-text) !important;
}

/*---  TAG ---*/
.vdv-tag{
	padding: 4px 8px;
	border-radius: 10px;
	background-color: var(--border-color);
}


/*----PROGRESS BAR-----*/
.is-small.progress-wrapper.is-not-native, .progress.is-small {
    height: 8px !important;
}
.progress-wrapper.color0 progress[value]::-webkit-progress-value {background-color: #8DE0AD;}
.progress-wrapper.color1 progress[value]::-webkit-progress-value {background-color: #F68870;}
.progress-wrapper.color2 progress[value]::-webkit-progress-value {background-color: #9FCAEC;}
.progress-wrapper.color3 progress[value]::-webkit-progress-value {background-color: #B6A7DF;}
.progress-wrapper.color4 progress[value]::-webkit-progress-value {background-color: #E0CE8D;}
.progress-wrapper.color5 progress[value]::-webkit-progress-value {background-color: #E08DAB;}
.progress-wrapper.color6 progress[value]::-webkit-progress-value {background-color: #8DE0AD;}
.progress-wrapper.color7 progress[value]::-webkit-progress-value {background-color: #8DE0AD;}
.progress-wrapper.color8 progress[value]::-webkit-progress-value {background-color: #8DE0AD;}



/*----- INPUTS -----*/
.form-group{
	margin-bottom: 10px;
}
.form-group .form-label{
	margin-bottom:7px;
	font-weight: 500;
	font-size: 14px;
}

.switch .form-label{
	margin-bottom:1px !important;
}

.form-group .control{
	margin-top: 4px;
}


.is-small .input, .is-small .select select, .is-small .taginput .taginput-container.is-focusable, .is-small .textarea{
	background-color: #f9fbff !important;
	font-size: 14px !important;
	height: unset !important;
}
.input, .select select, .taginput .taginput-container.is-focusable{
	background-color: #f9fbff !important;
	font-size: 14px !important;
}
.control.lg .input, .control.lg .select select, .control.lg .taginput .taginput-container.is-focusable{
	height: 40px !important;
}

.b-numberinput input[type=number]{
	    height: 30px !important;
}



.input, .select select, .taginput .taginput-container.is-focusable{
	background-color: #f9fbff !important;
	font-size: 14px !important;
}
.inout, .textarea{
	background-color: #f9fbff !important;
	font-size: 14px !important;
}

.input:active, .input:focus, .textarea:active, .textarea:focus{
	box-shadow: none !important;
	border: solid 1px var(--main-color) !important;
}
.switch input[type=checkbox]:checked+.check{
	background: #8bd8aa !important;
}
.switch input[type=checkbox]:active:checked+.check, .switch input[type=checkbox]:focus:checked+.check{
	box-shadow: none !important;
}
.switch.is-small{
	font-size: 14px !important;
}
.b-radio.radio input[type=radio]:checked+.check{
	border-color: var(--main-color) !important;
}
.b-radio.radio input[type=radio]+.check:before{
	background-color: var(--main-color)!important;
}

/*---PAGINATION---*/
.pagination-link.is-current{
	background-color: var(--dark-text) !important;
    border-color:var(--dark-text) !important;
}

/*-- MODALS AND CUSTOM SCROLLBAR--*/
.modal{
    z-index: 51 !important;
}
.modal-background{
	background-color: rgba(10, 10, 10, 0.63) !important;
}
.modal-card::-webkit-scrollbar {
    width: 8px;
}
.modal-card::-webkit-scrollbar-track { 
    background : #ffffff;
}
.modal-card::-webkit-scrollbar-thumb { 
    background : #c2c2c7;
    border-radius: 15px;
}
.modal-card-head{
	border-bottom: none !important;
}
.modal-card-foot, .modal-card-head{
	background-color: white !important;	
}
.modal-card-title{
	font-size: 18px !important;
}
.custom-scrollbar::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
.custom-scrollbar::-webkit-scrollbar-track { 
    background : #ffffff;
    border-radius: 5px;
}
.custom-scrollbar::-webkit-scrollbar-thumb { 
    background : #c2c2c7;
    border-radius: 10px;
}
::-moz-selection { /* Code for Firefox */
    color: #2e2d30;
    background:  #45daadd5 !important;
}
::selection {
    color: #2e2d30;
    background:  #45daadd5 !important;
}


/*--EMPTY STATE--*/
.empty-state-message{
	padding: 80px 0;
	width: 600px;
	margin: auto;
	text-align: center;
	max-width: 100%;
}
.empty-state-message .empty-state-icon{
	width: 140px;
}


/*--PAGE HEADER--*/
.page-header{
	display: block;
}
.page-actions{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-top: 15px;
}
.section-title{
	font-size: 20px;
	font-weight: bold;
}
.section-subtitle{
	color: var(--dark-grey);
	font-size: 15px;
}
@media (min-width: 600px) {
	.page-header{
		display: flex;
		align-items: end;
		justify-content: space-between;
	}
	.page-actions{
		display: block;
		margin-top: 0;
	}
}


/*---OTHER---*/
.ghost {
  opacity: 0.5;
  background: #dce5ea;
}
.avatar{
	border-radius: 50%;
	width: 60px;
	height: 60px;
	object-fit: cover;
}
.avatar.square{
	border-radius: 4px !important;
}
.avatar.sm{
	width: 40px;
	height: 40px;
}
.avatar.xs{
	width: 30px;
	height: 30px;
}
.avatar.contian{
	object-fit: contain !important;
}


.wierd-avatar{
	height: 30px; 
	width: 30px; 
	object-fit: contain; 
	padding: 4px;
	border-radius: 3px;
}
.wierd-avatar.h40{
	height: 40px !important; 
	width: 40px !important; 
}
.wierd-avatar.no-padding{
	height: 30px; 
	width: 30px; 
	object-fit: contain; 
	padding: 0px !important;
}



.background-layer{
	height: 100%;
	padding: 50px 0;
	background: linear-gradient(352.23deg, #000B32 -30.46%, rgba(0, 0, 0, 0) 95.64%);
}	
.card-icon{
	border-radius: 4px;
	padding: 18px 20px;
	color: white;
}


.text-editor-content ul{
	padding-left: 40px;
	list-style: disc;
	margin-bottom: 1em;
}
.text-editor-content ol{
	list-style: decimal;
	padding-left: 40px;
	margin-bottom: 1em;
}

/*----BUEFY EDITS-----*/

/*pagination*/
.pagination-link.is-current{
	background-color: var(--main-color) !important;
	border: solid 1px var(--main-color) !important;
	color: white !important;
}

.dropdown-item{
	text-align: left !important;
}
.dropdown .dropdown-menu .has-link a.is-active, a.dropdown-item.is-active, button.dropdown-item.is-active {
    background-color: #eeeeee !important;
    color: #555 !important;
}