:root{
    --border-color: #e5e7eb;
	--font-family: "Roboto Condensed", sans-serif;
}
body {
	font-family: var(--font-family);
    height: 100%;
    background-color: #fff;
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    background-position: center;
    font-size: 0.93em;
    animation: animatedBackground 15s 
	linear infinite alternate;
}
.bg-primary{
    background-color: rgb(var(--primary));
}
.bg-primary-100{
    background-color: rgba(var(--primary),0.1);
}
.bg-primary-200{
    background-color: rgba(var(--primary),0.3);
}
.border-primary{
    border-color: rgb(var(--primary));
}
.text-primary{
    color: rgb(var(--primary))
}
.text-base{
	font-size: 15px
}
.container-fluid{
    padding: 0 2rem;
}
.container{
    max-width: 1200px;
    width: 100%;
}
@media (max-width: 1024px) {
    .container-fluid{
        padding: 0 1.3rem;
    }
}

.table {
	display: flex;
	flex-flow: column nowrap;
	justify-content: space-between;
	font-size: 0.875rem;
	line-height: 1.5;
}
.table.main-first-cell .tr .td {
	flex-grow: 1;
	flex: none;
	text-align: center;
	justify-content: center;
}
.table.main-first-cell .tr .td:first-child {
	flex-direction: row;
	display: flex;
	justify-content: start;
}
.table.striped .tbody .tr:nth-of-type(even) .td {
	background-color: #f9f9f9;
}
.table.hovered .tbody .tr:hover .td {
	background-color: rgba(0, 1, 0, );
}
.table .thead {
	font-weight: 700;
}
.table .thead .tr .td {
	color: #444;
	background-color: #f2f2f2;
	text-transform: uppercase;
}
.table .tbody .tr .td {
	background-color: #f0f0f0;
}
.table .tr {
	display: flex;
	flex-flow: row nowrap;
	width: 100%;
}
.table .tr .td {
	display: flex;
	flex-flow: row nowrap;
	flex-grow: 1;
	flex-basis: 0;
	word-break: break-word;
	padding: 1rem;
	margin: 0.25rem;
}
.dropdown-wrap {
	z-index: 1 !important;
}
.ql-editor {
    min-height: 20px !important;
  }
  .multiselect__single{
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box !important;
  }
.asterisk{
	font-size: 13px;
	color: #dc2626;
	margin-left: 1px
}
.multiselect,.editor-container {
    border-radius: 5px !important;
}
/* Button */
.btn {
    background: #999;
    padding: 10px 15px;
    color: #fff;
    display: inline-block;
	border-radius: 5px;
	margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 13px;
}
/*Btn Primary*/
.btn-primary{
    background: rgb(var(--primary));
}
.btn-primary:hover{
    background: rgb(var(--primary),0.9);
}
/*Btn Default*/
.btn-default{
    background: #eee;
    border: 1px solid #ccc;
    color: #333;
}
.btn-default:hover{
    background-color: #ccc;
}
/*Btn green*/
.btn-green{
    background: rgba(var(--green),1);
    border: 1px solid rgba(var(--green),1);
    color: #fff
}
.btn-green:hover{
    background-color: rgba(var(--green),0.6);
}

/* Page Title */
.page-title-wrp {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}
.page-title{
    font-size: 1.5rem;
    font-weight: bold;
	line-height: 1
}
/* Form Field */
.form-field{
  position: relative;
  min-width: 10rem;
}
.form-field .form-box {
    position: relative;
    border: 1px solid var(--border-color);
    padding: 7px 10px;
    display: flex;
    border-radius: 5px;
    white-space: nowrap;
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}
.form-field .search-box {
    position: relative;
    border: 1px solid var(--border-color);
    padding: 9px 10px;
    display: flex;
    border-radius: 5px;
    white-space: nowrap;
}
.form-field .form-icon {
    top: 12px;
    left: 10px;
    color: #999;
    font-size: 14px;
	font-weight: 400
}
.form-field .form-label {
    color: #999;
    font-weight: 400;
    margin: 0 !important;
    cursor: pointer;
    margin-top: -16px !important;
    text-align: left;
    background: #fff;
    padding: 0 5px;
    font-size: 12px;
    font-weight: 500;
}
/* Remove default outline */
.form-field .form-box input:focus,
.form-field .search-box input:focus,
.form-field .form-box select:focus {
  outline: none; 
}

/* Change wrapper border when input/select is focused or input is checked */
.form-field .form-box:has(input:focus),
.form-field .form-box:has(input:checked),
.form-field .search-box:has(input:focus),
.form-field .search-box:has(input:checked),
.form-field .form-box:has(select:focus) {
  border-color: var(--primary);
}
.form-field .multiselect__select {
    width: 20px !important;
    height: 20px !important;
    padding: 0 0 !important;
}
.form-field .multiselect {
    min-height: 25px !important;
    font-size: 15px !important;
    top: 2px !important;
    max-height: 25px !important;
    border: none !important;
}
.form-field .multiselect__tags {
    min-height: 13px !important;
    line-height: 13px !important;
    margin-bottom: 0 !important;
    padding-top: 1px !important;
}
.form-field .multiselect__tag{
    background: rgb(var(--primary));
}
.form-field .multiselect__tag-icon {
    top: 0 !important;
    line-height: 20px !important;
    background: rgb(var(--primary));
}
.form-field .multiselect__tag-icon:after{
    color: #fff !important;
}
.form-field .multiselect__tag-icon:hover {
    background: rgba(var(--primary),0.5);
}
.form-field .el-input__inner {
    height: 23px !important;
}
.form-field .el-range-editor.el-input__inner {
    padding: 0;
    max-width: 210px;
    width: 100%;
}
.form-field .el-date-editor .el-range__icon,.form-field .el-date-editor .el-range-separator,
.form-field .el-date-editor .el-range__close-icon {
    line-height: 23px !important;
}
.form-field .multiselect__spinner{
    width: 20px !important;
    height: 20px !important;
}
.form-field  .el-input__prefix {
    display: none;
}
.form-field .el-input--prefix .el-input__inner {
    padding-left: 5px;
}
.form-field .el-date-editor .el-icon-date{
    display: none;
}
.form-field .multiselect__tags,.form-field .el-input__inner{
	border: none !important
}
.form-field .multiselect__strong {
    font-size: 12px;
    margin: 0;
    font-weight: 500;
    padding: 4px 6px;
    border: 1px solid #eee;
    text-align: center;
    line-height: 1;
    border-radius: 5px;
    background: #f9f9f9;
}
.form-field .multiselect__tag{
    margin-right: 2px
}
/*form Field*/
.form-control:focus{
    outline-color: rgb(var(--primary));
}

input:disabled {
    cursor: not-allowed;
    background: #eee;
}

/*Modal*/
.modal-header{
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items:center;
    border-bottom: 1px solid var(--border-color )
}
.modal-header .modal-title{
    font-size: 18px;
    font-weight: bold
}
.modal-header .modal-close{
    font-size: 20px;
    color: black;
}
.modal-header .modal-close:hover{
    color: #999
}
.modal-body{
    padding: 10px 20px;
    max-height: 700px;
}
.aside-main {   
    width: 16em;
}
/* Responsive Menu */
@media (max-width:1024px) {
    .aside-main {   
        left: 0;
        background: rgba(var(--primary), 1) !important;
        z-index: 3 !important;
        position: fixed;
        min-width: 16em;
        height: 100%;
        box-shadow: 0 5px 30px #33333373;
    }
}
.aside-main.hide {   
    left: -100%;
}
.my-wrapper{
    padding: 15px 25px;
    border-radius: 0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.parent-section-heading, .child-section-heading, .sub-child-section-heading, .grand-sub-child-section-heading {
    background: rgba(var(--primary),0.1);
    padding: 16px 15px;
    font-size: 16px !important;
    font-weight: bold;
    color: rgba(var(--primary),1);
}
.parent-section{
    background: #fff;
    margin-bottom: 20px
}
.parent-section-box {
    padding: 20px;
}
.child-section{
    background: #fff;
}
.sub-child-section-heading{
    width: 100%;
}
.main-contain-wrap header{
	position: relative !important;
	z-index: 11 !important;
}
.main-contain-wrap{
	z-index: 1 !important;
    height: calc(100% - 20px)
}
/* Multiselect */
/* Only apply when multiselect is NOT inside .form-field */
#__layout .multiselect__single:not(.form-field .multiselect__single),
#__layout .multiselect__input:not(.form-field .multiselect__input) {
  line-height: 26px !important;
  font-size: 14px;
}

#__layout .multiselect__placeholder:not(.form-field .multiselect__placeholder) {
  margin-bottom: 0 !important;
  line-height: 26px !important;
}

#__layout .multiselect__option--highlight,
#__layout .multiselect__tag {
  background: rgb(var(--primary)) !important;
}

#__layout .multiselect__tag-icon:after {
  color: #fff !important;
}

#__layout .multiselect__tag-icon {
  top: 0 !important;
}

#__layout .multiselect__tag {
  margin-right: 5px !important;
  margin-bottom: 0 !important;
}

#__layout .multiselect__tags:not(.form-field .multiselect__tags) {
  min-height: 40px !important;
  border: 1px solid #e5e7eb !important;
  margin-bottom: 0 !important;
  line-height: 20px !important;
  box-shadow: none !important;
}

#__layout .multiselect__element:hover .option__small {
  color: #fff !important;
}

#__layout .multiselect__tag-icon:focus,
#__layout .multiselect__tag-icon:hover {
  background: rgba(0,0,0,0.2) !important;
}

/* Element UI Components */
#__layout .date-wrapper .el-input__inner {
    height: 40px !important;
    line-height: 35px !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 5px !important;
}
.el-date-editor {
  padding: 0;
}
.el-dropdown-menu{
    min-width: 250px
}
.el-dropdown-menu__item:not(.is-disabled):hover {
    background-color: rgba(var(--primary), 0.05) !important;   
    color: rgb(var(--primary)) !important;
}
.el-button--text {
    color: rgb(var(--primary)) !important;
}

.flyover {
    -webkit-box-shadow: -1px 0px 50px 0px rgb(0 0 0 / 31%);
    box-shadow: -1px 0px 50px 0px rgb(0 0 0 / 31%);
    max-width: 500px;
    width: 100% !important;
}
/* active link */
.tab-menus .nuxt-link-active {
    font-weight: bold;
    color: rgb(var(--primary));
    border-bottom: 2px solid rgb(var(--primary));
}
.tab-menus{
    margin-bottom: -2px;
}
@media (max-width:990px) {
    .el-dialog {
        width: 96% !important;
    }
    .el-popper {
        max-height: 400px;
        overflow: auto;
    }
}
svg#tui-image-editor-svg-default-icons{
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}
svg[display="none"] {
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}
/* Remove hover color in full calendar */
table.fc-scrollgrid tr:hover{
    background: transparent !important;
}
/* Fixing Long BreadCrumb in mobile app */
.top-breadcrumb {
    flex-wrap: wrap;
}