@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Color Variables */
:root {
  /* Primary Colors */
  --primary-color: #9481b9;
  --primary-dark: #6e5b92;
  
  /* Secondary Colors */
  --secondary-color: #c39abd;
  --secondary-light: #edcfe3;
  
  /* Background Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #F5F5F5;
  --bg-tertiary: #F1F1F1;
  
  /* Border Colors */
  --border-color: #dddddd;
  --border-light: #eeeeee;
  
  /* Alert/Status Colors */
  --danger-color: #ff0000;
  --danger-hover: #df0000;
  --warning-color: #f68b33;
  
  /* Text Colors */
  --text-light: #666666;
  
  /* Shadow Colors */
  --shadow-color: rgba(0, 0, 0, 0.25);
  --shadow-light: rgba(0, 0, 0, 0.1);

  /* Gradients */
  --gradient-primary: linear-gradient(77deg, var(--primary-color) -50%, var(--primary-dark) 100%);
}

/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

@font-face {
  font-family: Poppins-Regular;
  src: url('../fonts/poppins/Poppins-Regular.ttf'); 
}

@font-face {
  font-family: Poppins-Medium;
  src: url('../fonts/poppins/Poppins-Medium.ttf'); 
}

@font-face {
  font-family: Poppins-Bold;
  src: url('../fonts/poppins/Poppins-Bold.ttf'); 
}

@font-face {
  font-family: Poppins-SemiBold;
  src: url('../fonts/poppins/Poppins-SemiBold.ttf'); 
}

/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

* {
	margin: 0px; 
	padding: 0px; 
	box-sizing: border-box;
}

body, html {
	height: 100%;
  font-family: 'Poppins', sans-serif;

}

/*---------------------------------------------*/
a {
	font-family: Poppins-Regular;
	font-size: 14px;
	line-height: 1.7;
	color: var(--text-light);
	margin: 0px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

a:focus {
	outline: none !important;
}

a:hover {
	text-decoration: none;
  color: #6a7dfe;
  color: -webkit-linear-gradient(left, #21d4fd, #b721ff);
  color: -o-linear-gradient(left, #21d4fd, #b721ff);
  color: -moz-linear-gradient(left, #21d4fd, #b721ff);
  color: linear-gradient(left, #21d4fd, #b721ff);
}

/*---------------------------------------------*/
h1,h2,h3,h4,h5,h6 {
	margin: 0px;
}

p {
	font-family: Poppins-Regular;
	font-size: 14px;
	line-height: 1.7;
	color: var(--text-light);
	margin: 0px;
}

ul, li {
	margin: 0px;
	list-style-type: none;
}

/*---------------------------------------------*/
/*---------------------------------------------*/
button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

iframe {
	border: none !important;
}

/*//////////////////////////////////////////////////////////////////
[ Utility ]*/
.txt1 {
  font-family: Poppins-Regular;
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

.txt2 {
  font-family: Poppins-Regular;
  font-size: 13px;
  color: #333333;
  line-height: 1.5;
}

/*//////////////////////////////////////////////////////////////////
[ login ]*/

.limiter {
  width: 100%;
  margin: 0 auto;
}

.container-login100 {
  width: 100%;  
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background: #f2f2f2;  
}

.wrap-login100 {
  width: 390px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 77px 55px 33px 55px;

  box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
}

/*------------------------------------------------------------------
[ Form ]*/

.login100-form {
  width: 100%;
}

.login100-form-title {
  display: block;
  font-family: Poppins-Bold;
  font-size: 30px;
  color: #333333;
  line-height: 1.2;
  text-align: center;
}
.login100-form-title i {
  font-size: 60px;
}

/*------------------------------------------------------------------
[ Input ]*/

.wrap-input100 {
  width: 100%;
  position: relative;
  border-bottom: 2px solid #adadad;
  margin-bottom: 37px;
}

.input100 {
  font-family: Poppins-Regular;
  font-size: 15px;
  color: var(--secondary-color);
  line-height: 1.2;

  display: block;
  width: 100%;
  height: 45px;
  background: transparent;
  padding: 0 5px;
}

/*---------------------------------------------*/ 
.focus-input100 {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.focus-input100::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;

  background: #6a7dfe;
  background: -webkit-linear-gradient(left, #21d4fd, #b721ff);
  background: -o-linear-gradient(left, #21d4fd, #b721ff);
  background: -moz-linear-gradient(left, #21d4fd, #b721ff);
  background: linear-gradient(left, #21d4fd, #b721ff);
}

.focus-input100::after {
  font-family: Poppins-Regular;
  font-size: 15px;
  color: #999999;
  line-height: 1.2;

  content: attr(data-placeholder);
  display: block;
  width: 100%;
  position: absolute;
  top: 16px;
  left: 0px;
  padding-left: 5px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.input100:focus + .focus-input100::after {
  top: -15px;
}

.input100:focus + .focus-input100::before {
  width: 100%;
}

.has-val.input100 + .focus-input100::after {
  top: -15px;
}

.has-val.input100 + .focus-input100::before {
  width: 100%;
}

/*---------------------------------------------*/
.btn-show-pass {
  font-size: 15px;
  color: #999999;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  padding-right: 5px;
  cursor: pointer;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.btn-show-pass:hover {
  color: #6a7dfe;
  color: -webkit-linear-gradient(left, #21d4fd, #b721ff);
  color: -o-linear-gradient(left, #21d4fd, #b721ff);
  color: -moz-linear-gradient(left, #21d4fd, #b721ff);
  color: linear-gradient(left, #21d4fd, #b721ff);
}

.btn-show-pass.active {
  color: #6a7dfe;
  color: -webkit-linear-gradient(left, #21d4fd, #b721ff);
  color: -o-linear-gradient(left, #21d4fd, #b721ff);
  color: -moz-linear-gradient(left, #21d4fd, #b721ff);
  color: linear-gradient(left, #21d4fd, #b721ff);
}

/*------------------------------------------------------------------
[ Button ]*/
.container-login100-form-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 13px;
}

.wrap-login100-form-btn {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 25px;
  overflow: hidden;
  margin: 0 auto;
}

.login100-form-bgbtn {
  position: absolute;
  z-index: -1;
  width: 300%;
  height: 100%;
  background: #a64bf4;
  background: -webkit-linear-gradient(right, #21d4fd, #b721ff, #21d4fd, #b721ff);
  background: -o-linear-gradient(right, #21d4fd, #b721ff, #21d4fd, #b721ff);
  background: -moz-linear-gradient(right, #21d4fd, #b721ff, #21d4fd, #b721ff);
  background: linear-gradient(right, #21d4fd, #b721ff, #21d4fd, #b721ff);
  top: 0;
  left: -100%;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.login100-form-btn {
  font-family: Poppins-Medium;
  font-size: 15px;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  height: 50px;
}

.wrap-login100-form-btn:hover .login100-form-bgbtn {
  left: 0;
}

/*------------------------------------------------------------------
[ Responsive ]*/

@media (max-width: 576px) {
  .wrap-login100 {
    padding: 77px 15px 33px 15px;
  }
}

/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

/*Authatication screen*/
.main-authaticatoin-wraper{ display: flex; flex-wrap: wrap; overflow-y: auto; padding: 15px 0; background-color:var(--bg-primary);width: 100%;height: 100vh; justify-content: center;align-items: center;}
.main-authaticatoin-wraper .auth-center-segment{display: flex;flex-flow: column;max-width: 470px;margin:0 15px;width: 100%;}
.main-authaticatoin-wraper .auth-center-segment .auth-logo-top{width: 165px;margin: 0 auto;margin-bottom: 15px;text-align: center;}
.auth-form-field-section{display: flex; flex-flow: column;   padding: 40px;box-shadow: 0 0 10px rgb(0 0 0 / 30%);background-color: var(--bg-primary);    border-radius: 5px;}
.auth-form-field-section h4{text-align: center;margin-bottom: 15px;font-weight: 600;color: var(--primary-dark);}
.form-group .inner-form-group .auth-icons.font-email-set{font-size:11px;top: 14px;}
.main-authaticatoin-wraper .auth-center-segment .authatication-form{width: 100%;}
.main-authaticatoin-wraper .auth-center-segment .form-control{padding-right: 30px;}
.form-group-btn .blue-btn{width: 100%;position: relative;}
.form-group-btn .blue-btn .set-aero{position: absolute; right: 15px;}
.green-text{color: var(--primary-color);font-weight: 700;text-decoration: none;}
.green-text:hover{color: var(--primary-dark);}
/*End Authatication screen*/

.alert-box{position: fixed;z-index: 999; top: 15px; right: 15px;}
.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c80000;
  border-radius: 2px;
  padding: 4px 25px 4px 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0px;
  pointer-events: none;

  font-family: Poppins-Regular;
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f06a";
  font-family: FontAwesome;
  font-size: 16px;
  color: #c80000;

  display: block;
  position: absolute;
  background-color: #fff;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 5px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}

/* ROW Columns Class */
.vrow { margin: 0 -15px;  display: flex; flex-flow: wrap; }
[class*="vcol-"] { padding: 0 15px; }
.vcol-1 {width: 8.33%;}
.vcol-2 {width: 16.66%;}
.vcol-3 {width: 25%;}
.vcol-4 {width: 33.33%;}
.vcol-5 {width: 41.66%;}
.vcol-6 {width: 50%;}
.vcol-7 {width: 58.33%;}
.vcol-8 {width: 66.66%;}
.vcol-9 {width: 75%;}
.vcol-10 {width: 83.33%;}
.vcol-11 {width: 91.66%;}
.vcol-12 {width: 100%;}

img { max-width: 100%; }
button { background: none;  font-weight: 500; border: 0; outline: none; cursor: pointer; -webkit-transition: all 0.2s linear; -moz-transition: all 0.2s linear; -ms-transition: all 0.2s linear; -o-transition: all 0.2s linear; transition: all 0.2s linear; }
button:focus{ box-shadow: none; outline: none; }
p{ margin: 0 0 10px; font-weight: 400; }

.text-center { text-align: center; }
.text-right { text-align: right; }

.form-control:disabled { background: #E9ECEF;  }
textarea.form-control { padding: 10px 15px; height: auto; resize: none; }
input[type="file"].form-control { padding: 7px; }
.form-group { margin: 0 0 15px; }
.form-group .inner-form-group{position: relative;}
.form-group .inner-form-group .auth-icons{position: absolute;top: 11px;right: 15px;cursor: pointer;}
.form-group label { font-weight: 600; margin: 0 0 5px; display: inline-block; color: #3A393B; font-size: 14px; }
.form-control {appearance: auto;font-family: 'Roboto', sans-serif; display: block; width: 100%; height: 40px; padding: 0 15px; border-color: #888888;font-size: 16px; font-weight: 400;line-height: 1.5; color: #000; background-color: #fff; background-clip: padding-box; border: 1px solid #ced4da;border-radius: 0.25rem; transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
.form-control:focus{ outline: none; border-color: var(--primary-color); }

/* Scrollbar */
.scroll-bar-style::-webkit-scrollbar {width: 8px;border-radius:8px}
.scroll-bar-style::-webkit-scrollbar-track {box-shadow: inset 0 0 6px #B1BFCB;}
.scroll-bar-style::-webkit-scrollbar-thumb {background-color: var(--primary-dark);/* outline: 1px solid #B1BFCB; */border-radius:8px}

/* Side Menu */
nav.site-nav { background: var(--bg-primary);border-right: 1px solid var(--border-color); width: 55px; color: #fff; display: flex; flex-wrap: wrap; -webkit-transition: all 0.2s linear; -moz-transition: all 0.2s linear; -ms-transition: all 0.2s linear; -o-transition: all 0.2s linear; transition: all 0.2s linear;flex-flow: column;height: 100%; }
nav.site-nav .inner-nav { width: 100%;height: 100%;display: flex;justify-content: space-between; flex-flow: column; }
nav.site-nav.open .inner-nav{overflow: auto;}
nav.site-nav .profile {  border-bottom: 1px solid #c5c5c5; padding: 10px 5px; margin-bottom: 5px;  margin: 0 auto 10px; }
nav.site-nav .profile .pic{  margin-left: 5px; vertical-align: middle; background: var(--secondary-color); color: #C4C4C4; display: inline-block; height: 30px; width: 30px; text-align: center; line-height: 33px; border-radius: 50%; }
nav.site-nav .profile .name{ vertical-align: middle; color: var(--secondary-color); opacity: 0; white-space: nowrap; width: 0; transition: 0.2s all ease-in; -webkit-transition: 0.2s all ease-in; -ms-transition: 0.2s all ease-in; -moz-transition: 0.2s all ease-in; display: inline-block; }

nav.site-nav .company-logo { padding: 10px; background: var(--bg-primary); position: relative; border-bottom: 1px solid var(--border-color);width: 100%;}
nav.site-nav.open .company-logo{display: block;}
nav.site-nav.open .company-logo .pic{opacity: 1;}
nav.site-nav .company-logo .toggle-icon{display: none;}
nav.site-nav .company-logo .pic{ display: flex; margin-left: 1px; justify-content: center; opacity: 0;}
nav.site-nav .company-logo .toggle-icon{display: none;}
nav.site-nav .company-logo .pic img{ width: auto; height: 100px;border-radius: 0; object-fit: cover; object-position: center; }

nav.site-nav .menu-title{width: 100%;padding: 10px 15px 5px;display: none;justify-content: space-between; color: var(--primary-dark);font-size: 14px;text-transform: uppercase;}
nav.site-nav.open .menu-title{display:flex;}
nav.site-nav .menu-list{ list-style: none; padding: 0; margin: 0; }
nav.site-nav .inner-nav .nav-menu-area{height: 100%;}
nav.site-nav.open .inner-nav .nav-menu-area{overflow: auto;}
nav.site-nav .inner-nav .nav-menu-area>.menu-list{padding: 5px;} 
nav.site-nav .menu-list li { padding: 0; position: relative; }

nav.site-nav .menu-list li .dropdown-aero{ 
  padding: 0;
  font-size: 13px;
  background: var(--primary-color);
  width: 11px;
  height: 11px;
  border-radius: 10px;
  display: inline-flex;
  position: absolute;
    right: 0;
    top: 4px;
  }
  
  nav.site-nav .menu-list li .dropdown-aero .icon-rotate{display: none;}
  nav.site-nav.open .menu-list li .dropdown-aero{ padding: 11px 15px;cursor: pointer;color: var(--secondary-color);display: inline-flex;background: unset;width: unset;height: unset;}
  nav.site-nav.open .menu-list li .dropdown-aero .icon-rotate{display: inline-flex; }

  nav.site-nav .menu-list li ul{display: none;}
  /* nav.site-nav .menu-list li:hover>.dropdown-aero{transform: rotate(-90deg);} */
  nav.site-nav .menu-list li.dropdown-active .dropdown-aero{display: inline-flex;transition: .4s ease all;}
  /* nav.site-nav .menu-list li.dropdown-active.active .dropdown-aero{color: var(--bg-primary);} */
  nav.site-nav .menu-list li.dropdown-active.active .dropdown-aero .icon-rotate{transform: rotate(-90deg);}
  /* nav.site-nav .menu-list li.dropdown-active>.dropdown-aero .icon-rotate{transform: rotate(-90deg);} */
  nav.site-nav .menu-list li.dropdown-active>.menu-list{display: block !important;}
  nav.site-nav .menu-list li.active>.dropdown-aero{color: var(--bg-primary);}
nav.site-nav .menu-list li a{ color: var(--secondary-color); text-align: left; width: 100%; padding: 7px 8px; border-radius: 5px; display: flex;text-decoration: none;margin-bottom: 5px; align-items: center;}
nav.site-nav .menu-list li:hover>a{   background: var(--bg-tertiary); }
nav.site-nav .menu-list li.active>a{ background: var(--primary-color); color: #fff; }
nav.site-nav .menu-list li.active>a .text{ color: #fff; }
nav.site-nav .menu-list li a .icn-img{ width: 30px;height: 30px; font-size: 18px; line-height: 10px; text-align: center; justify-content: center;display: inline-flex;align-items: center; }
nav.site-nav .menu-list li a .text { opacity: 0; white-space: nowrap; color: var(--secondary-color); width: 0; font-size: 15px;transition: 0.2s all ease-in; -webkit-transition: 0.2s all ease-in; -ms-transition: 0.2s all ease-in; -moz-transition: 0.2s all ease-in; display: inline-block; }
nav.site-nav .menu-list .menu-list li a .text{font-size: 14px;}
nav.site-nav .sign-out { width: 100%; margin-top: auto; background: #000;  }
nav.site-nav .sign-out a{ font-size: 16px; color: #555; background: var(--bg-tertiary); display: flex;width: 100%;padding: 10px 16px;text-decoration: none;}
nav.site-nav .sign-out a .sign-out-text{display: none;}
nav.site-nav .sign-out a i{ font-size: 18px; }

nav.site-nav.open { width: 300px; }
nav.site-nav.open .company-logo .pic .on-open{display: block;}
nav.site-nav.open .profile .pic{  }
nav.site-nav.open .profile .name{ display: inline-block; opacity: 1; white-space: nowrap; padding-left: 10px;}
nav.site-nav.open .menu-list li a .text { font-size: 14px; white-space: nowrap; opacity: 1; padding-left: 5px; }
nav.site-nav.open .menu-list li a .icn-img{text-align: center; } 
nav.site-nav.open .sign-out a .sign-out-text{ display: inline-block; white-space: nowrap; padding-left: 15px; }
nav.site-nav.open .inner-nav{padding-bottom: 40px; opacity: 1; transition: all 0.5s linear; -webkit-transition: all 0.5s linear; -moz-transition: all 0.5s linear; -o-transition: all 0.5s linear; -ms-transition: all 0.5s linear; transition-delay: 0.2s; -webkit-transition-delay: 0.2s; -moz-transition-delay: 0.2s; -o-transition-delay: 0.2s; -ms-transition-delay: 0.2s; }
nav.site-nav.open .profile .language{float:right;}

/* Menu Language */
nav.site-nav .profile .language{ float: none; position:relative;  margin:5px 0 0; text-align: center;}
nav.site-nav .profile .language img{width:30px;}
nav.site-nav .profile .language button{padding:0;text-align:left;}
nav.site-nav .profile .language .drop-dwon{position:absolute;top:-12px;left:100%;background:#fff;width:200px;padding:0;margin:0 0 0 10px;z-index:100;list-style:none;box-shadow:0px 0px 10px rgb(0 0 0 / 25%);}
nav.site-nav .profile .language .drop-dwon li{border-bottom:1px solid #e9ecf2;}
nav.site-nav .profile .language .drop-dwon li button{display:flex;padding:10px;width:100%;align-items:center;}
nav.site-nav .profile .language .drop-dwon li.active button:after{content:'\e913';font-family:'icomoon';color:#3366cc;}
nav.site-nav .profile .language .drop-dwon li button .text{width:100%;font-size:16px;color:var(--secondary-color);font-weight:500;padding-left:10px;}
nav.site-nav .profile .language .drop-dwon li button .text span{font-size:13px;display:block;}
nav.site-nav .profile .language .drop-dwon li button:hover{background:#eef1ff;}
/*End Side Menu */

/* Comman Button */
.blue-btn { background: var(--primary-color); padding: 10px 20px; border-radius: 3px; color: var(--bg-primary); display:inline-flex;align-items:center;text-decoration: none;} 
.blue-btn-text{color: var(--primary-color);font-weight: 800;}
.blue-btn .loader-spin{border: 2px solid #f3f3f3;border-top: 2px solid var(--primary-color);width: 18px;height: 18px;margin-left:5px;}
.blue-btn:hover{     background-color: var(--primary-dark);
    background-image: var(--gradient-primary);color: var(--bg-primary);} 
.blue-btn .set-margine{ margin-right: 7px; } 
.delete-btn:hover{ background-color: #ff5200;}
.gray-btn { background: #E1E1E1; padding: 10px 20px; border-radius: 3px; color: #444444; }

/* COMMAN MODAL */
.side-head { background: var(--primary-color); padding: 10px 15px; color: #fff; position: relative; font-weight: 500; }
.side-head .icon{ margin-right: 10px; position: relative; display: inline-block; }
.side-head .icon span.count{ position: absolute; top: -8px; font-size: 12px; font-weight: 500; right: -6px; }
.side-head .close-modal{  position: absolute; right: 5px; top: 13px; color: #fff; text-decoration:none; }

.comman-modal.left-side .comman-modal-main{ left: -420px; right: auto; }
.comman-modal.left-side.open .comman-modal-main{ opacity: 1; left: 0;  }
.comman-modal.right-side .comman-modal-main{ right: -420px;  }
.comman-modal.right-side.open .comman-modal-main{ right: 0;  }
.comman-modal.open:after{ content: ""; position: fixed; z-index: 100; left: 0; right: 0; top: 0; bottom: 0; background: rgba(0,0,0,0.5); }
.comman-modal .comman-modal-main{ position: fixed; z-index: 659999; top: 0px; right: -420px; width: 100%; max-width: 420px; height: 100%;-webkit-transition: right .4s cubic-bezier(.05, .74, .2, .99); -moz-transition: right .4s cubic-bezier(.05, .74, .2, .99); -o-transition: right .4s cubic-bezier(.05, .74, .2, .99); transition: right .4s cubic-bezier(.05, .74, .2, .99); background-color: #fff; -moz-backface-visibility: hidden; backface-visibility: hidden;  }
.comman-modal .comman-modal-main { height: 100%; }
.comman-modal .comman-modal-main .comman-modal-body{ padding: 10px; overflow-y: auto; height: calc(100% - 42px); overflow-x: hidden; }
.comman-modal .modal-footer { display: flex; justify-content: space-between; padding: 10px; border-top: 1px solid #C4C4C4; }
/* COMMAN MODAL END*/

section.main-wrapper{display: flex;width: 100%;height: 100%;background: #F5F5F5;}
section.main-wrapper .navbar.navbar-expand-lg{width: 350px;display: flex;align-items: flex-start;background-color: #fff;padding: 0;border-right: 1px solid var(--border-light);}
section.main-wrapper .navbar.navbar-expand-lg .header-container{display: flex;flex-flow: column;width: 100%;}
section.main-wrapper .navbar.navbar-expand-lg .header-container a.navbar-brand{text-align: center;padding: 15px 0;border-bottom: 1px solid var(--border-light);width: 100%; }
section.main-wrapper .navbar.navbar-expand-lg .header-container a.navbar-brand img{width: auto;height: 100px;border-radius: 0;} 
section.main-wrapper .navbar.navbar-expand-lg .header-container .side-menu{display: flex;flex-flow: column;padding: 10px 10px 0  ;}
section.main-wrapper .navbar.navbar-expand-lg .header-container .side-menu .menu-title{width: 100%;padding: 8px;display: flex;justify-content: space-between;}
section.main-wrapper .navbar.navbar-expand-lg .header-container .side-menu .navbar-nav{width: 100%;flex-flow: column;position: relative}
section.main-wrapper .navbar.navbar-expand-lg .header-container .side-menu .navbar-nav:hover>a, section.main-wrapper .navbar.navbar-expand-lg .header-container .side-menu .navbar-nav:hover> .dropdown-aero {color: #000000 ;}
section.main-wrapper .navbar.navbar-expand-lg .header-container .side-menu .navbar-nav.active>.nav-link{color: var(--primary-color);font-weight: bold;background-color: rgb(187 187 187 / 15%);}
section.main-wrapper .navbar.navbar-expand-lg .header-container .side-menu .navbar-nav.active>.dropdown-aero{color: var(--primary-color);}
section.main-wrapper .navbar.navbar-expand-lg .header-container .side-menu .navbar-nav .dropdown-aero{color: var(--bs-nav-link-color);font-weight: bold;    position: absolute;
  right: 8px;
  top: 8px;}
  section.main-wrapper .navbar.navbar-expand-lg .header-container .side-menu .navbar-nav .sub-navbar-nav{padding: 0 0 0 8px;}
section.main-wrapper .navbar.navbar-expand-lg .header-container .side-menu .navbar-nav .sub-navbar-nav .navbar-nav a.nav-link{font-size: 13px;}
section.main-wrapper .navbar.navbar-expand-lg .header-container .side-menu .navbar-nav.active>.dropdown-aero{color: var(--primary-color);font-weight: bold;}
section.main-wrapper .navbar.navbar-expand-lg .header-container .side-menu .navbar-nav .nav-link{font-size: 14px;width: 100%; color: var(--bs-nav-link-color);}

.plus-btn{outline: 0;border:2px solid #666; color: #666;    width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;display: none;}

 .main-wrapper .container-fluid{    width: calc(100% - 350px);}

main.site-content{
      background: #F4F6F9;
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

header.top-header {
  border-bottom: 1px solid var(--bg-primary);
  padding: 14px 20px;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  height: 50px;
  justify-content: space-between;
}

header.top-header .right-wrapper{display: flex;position: relative;z-index: 2;}
section.content-wapper {
  display: flex;
  flex-flow: column;
  flex-grow: 1;
  padding: 15px;
  height: 100%;
  overflow-y: auto;
}
.flex-grow{flex-grow: 1;}
section.content-wapper .common-panel { background: #fff;  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25); border-radius: 5px;display: flex;flex-flow: column;max-height: 100%; }
section.content-wapper .common-panel .panel-head { padding: 5px 10px; border-bottom: 1px solid #DEE2E6; display: flex; align-items: center;min-height: 50px; }  
section.content-wapper .common-panel .panel-head .right-btn{ margin-left: auto; }
section.content-wapper .common-panel .panel-head .title{font-size: 16px; font-weight: 500; word-wrap: break-word; }
section.content-wapper .common-panel .panel-body { padding: 15px;height: 100%;overflow: auto; }
section.content-wapper .common-panel .panel-body.user-mgmt{overflow: auto;}
section.content-wapper .common-panel .panel-body.user-profile{display: flex;flex-flow: column;}

section.content-wapper .common-panel .panel-body.user-profile.table-manage-height .table-body{max-height: calc(100vh - 210px);}
section.content-wapper .common-panel .panel-body.user-profile.table-manage-height .data-list-table{border: 1px solid var(--border-color);box-sizing: border-box;}
section.content-wapper .common-panel .panel-body.user-profile .table-body{height: 100%;overflow: auto;}
section.content-wapper .common-panel .panel-footer { padding: 10px 15px; border-top: 1px solid var(--border-color); }
section.content-wapper .common-panel .panel-footer.right-side{display: flex; justify-content: flex-end;}

header.top-header { border-left: 1px solid var(--bg-primary); padding: 14px 20px; background: var(--bg-primary); display: flex; align-items: center; height: 50px;}
header.top-header .toggle-icon { display: flex; align-items: center;  position: relative;  }
header.top-header .toggle-icon button{ font-size: 18px; padding: 0; line-height: 10px; color: var(--bs-nav-link-color);}
header.top-header .toggle-icon button:hover{color: #000000;}
header.top-header .toggle-icon .loader-spin{ position: absolute; left: 32px; top: -3px; width: 25px; height: 25px; }

/* Breadcrumb */
section.content-wapper .breadcrumb { margin: 0 0 15px;display: flex;justify-content: space-between; align-items: center;}
section.content-wapper .breadcrumb .right-btn {
  margin-left: auto;
}
section.content-wapper .breadcrumb ul { padding: 0; margin: 0; }
section.content-wapper .breadcrumb ul li { display: inline-block; font-size: 18px; font-weight: 500; position: relative; }
section.content-wapper .breadcrumb ul li:after{ content: ">"; padding: 0 1px 0 7px; }
section.content-wapper .breadcrumb ul li:last-child:after{ display: none; }
section.content-wapper .breadcrumb ul li button{ font-size: 18px; padding: 0; text-decoration: underline; color: var(--primary-color); font-weight: 500; }

.data-model-table .form-group{margin: 0;}
.company-selection {
  position: relative;
  z-index: 1;
  margin-left: 15px;
}
.company-selection .selection-view {
  padding: 8px 24px 8px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  position: relative;
  font-size: 14px;
  min-width: 180px;
  cursor: pointer;
}
.company-selection .selection-view .user-view-icon{margin-right: 8px;}
.company-selection .selection-view .carel-dd{position: absolute;right: 8px;top: 10px;}
.company-selection .selection-view .selection-placeholder {
  font-size: 12px;
  position: absolute;
  top: -8px;
  white-space: nowrap;
  background: #fff;
  font-weight: normal;
}
.company-selection .selection-list {
  position: absolute;
  top: 100%;
  background: #fff;
  border: 1px solid #eee;
  width: 100%;
  border-radius: 4px;
  display: none;
}
.company-selection:hover  .selection-list{display: flex;}
.company-selection .selection-list ul{margin: 0;padding: 0; width: 100%;}
.company-selection .selection-list ul li label{padding: 8px;cursor: pointer;}
.company-selection .selection-list ul li a{font-size: 14px; padding: 8px;width: 100%;display: inline-flex; align-items: center;text-decoration: none;}
.company-selection .selection-list ul li a:hover{color: var(--secondary-color);}
.company-selection .selection-list ul li.active a{background:rgb(187 187 187 / 15%)}
.company-selection .selection-list ul li:hover a {background:rgb(187 187 187 / 15%)}
.company-selection .selection-list ul li a .icons-user{margin-right: 5px;width: 20px;text-align: center;}
.company-selection .selection-list ul li label{font-size: 14px;display: flex;align-items: center;}
.company-selection .selection-list ul li label input{margin-right: 5px;} 

.filter-box .show-entries input, .filter-box .show-entries select {
  width: 59px;
  height: 32px;
  padding: 0 5px;
  text-align: center;
  margin: 0 6px;
  border: 1px solid #bababa;
  background-color: #fff;
  box-shadow: inset 0 0 10px rgba(0,0,0,.25);
  border-radius: 4px;
}
.filter-box .filter-segment {
  display: flex;
}
.filter-box .filter-segment .search-box .form-group {
  margin: 0;
}
.form-group .inner-form-group {
  position: relative;
}
.filter-box .filter-segment .search-box input {
  width: 250px;
  height: 32px;
  background: #fff;
  border: 1px solid #bababa;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 0 15px;
}
.filter-box .filter-segment .search-box .form-group .inner-form-group .search-icon {
  position: absolute;
  top: 9px;
  right: 10px;
  font-size: 13px;
}

.filter-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 14px;
}
/*pagignation*/
.pagination-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  font-size: 14px;
}

.pagination {
  display: inline-block;
}

.pagination a {
  color: black;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
  transition: background-color .3s;
  border: 1px solid #ddd;
  margin: 0 0 0 5px;
}

.pagination a.active {
  background-color: var(--primary-color);
  color: white;
  border: 1px solid var(--primary-color);
}

.pagination a:hover:not(.active) {background-color: var(--bg-tertiary);}
/*data table*/
.table-body .table-body-title{
  background: var(--bg-tertiary);
  padding: 10px;
  border: 1px solid var(--border-color);
  border-bottom: 0;
}
.data-list-table {width: 100%; border-collapse: collapse; margin: 0 0 15px;border-bottom: 1px solid var(--border-color) !important;}
.data-list-table.all-border{border: 1px solid var(--border-color) !important;}
.data-list-table thead{position: sticky;top: 0;z-index: 1;background: var(--bg-primary);}
.data-list-table thead th, .data-list-table tbody td {    font-size: 14px;
  color: var(--secondary-color);
  padding: 12px;
  word-wrap: break-word;border-bottom: 1px solid var(--border-color) !important;}
.table-manage-height .data-list-table thead th {background-color: var(--bg-tertiary);}
.data-list-table tbody tr:last-child td{border-bottom: 0 !important;}
.data-list-table .form-group{margin: 0;}
.link-color{color: var(--primary-color); font-weight: bold;}
.table-body  .dataTables_info{font-size: 14px; color: var(--secondary-color);}
.table-body .dataTables_length label{color: var(--secondary-color);font-size: 14px;}
.table-body .dataTables_length .dataTables_filter label{color: var(--secondary-color);font-size: 14px;}

/* Button List */
ul.btn-list{ padding: 0; margin: 0; list-style: none; display: inline-block; }
ul.btn-list li{ display: inline-block; padding: 0 3px; }
ul.btn-list li a, ul.btn-list li button{ padding: 0; width: 35px; height: 35px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--primary-color); color: #fff; font-size: 16px; cursor: pointer; }
ul.btn-list li a.delete-btn, ul.btn-list li button.delete-btn{ background: var(--danger-color); }
ul.btn-list li a.delete-btn, ul.btn-list li button.delete-btn:hover{background: var(--danger-hover);}
ul.btn-list li.active a .ul.btn-list li.active button{ background: var(--primary-color); }

/* pagination */
.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover{    background: var(--bg-tertiary) !important;
  border: 0;
  color: 0d5119 !important;border: 0 !important;}
.text-center{text-align: center;}
.dataTables_wrapper .dataTables_paginate{padding-top:10px ;}
.dataTables_wrapper .dataTables_info{padding-top: 20px;}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover{background:var(--bg-tertiary);border: 1px solid var(--bg-tertiary); color: var(--secondary-color) !important;}
.footer-section{background-color: var(--bg-tertiary);}
.footer-section .footer-copyright{padding: 10px 0;}
.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter{margin-bottom: 10px;}

.dataTables_wrapper .dataTables_length select:focus, .dataTables_wrapper .dataTables_filter input:focus{border: 1px solid var(--primary-color);outline: 0;}
/*drag and drop menu*/
/**
*  Nestable css
*/
.form-inline{margin-bottom: 30px;}
.add-menu-items{    display: inline-flex;
  flex-flow: column;
  border: 1px solid #DEE2E6;
  border-radius: 4px;
  padding: 15px;position: relative;width: 100%;}

  .add-menu-items .add-menu-title{    position: absolute;
    top: -12px;
    background: #fff;
    padding: 0 5px;font-size: 14px;}
.add-menu-items .form-group{}
.dd {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  max-width: 100%;
  width: 100%;;
  list-style: none;
  font-size: 14px;
  line-height: 20px;
}

.dd-list {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  width: calc(100% - 110px);
}

.dd-list .dd-list {
  padding-left: 30px;
}

.dd-collapsed .dd-list {
  display: none;
}

.dd-item,
.dd-empty,
.dd-placeholder {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  min-height: 20px;
  font-size: 13px;
  line-height: 20px;
}

.dd-handle {
  display: flex;
  align-items: center;
  height: 40px;
  margin: 5px 0;
  padding: 5px 10px;
  color: #333;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid #ccc;
  background: var(--bg-primary);
  -webkit-border-radius: 3px;
  border-radius: 3px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
    cursor: move;
    margin: 0 0 10px;
    padding: 5px 12px
}

.dd-handle:hover {
  color: var(--primary-color);
  background: rgb(187 187 187 / 15%);
}

.dd-item > button {

      position: relative;
    cursor: pointer;
    float: left;
    width: 40px;
    height: 40px;
    margin: 0px 0px;
    padding: 0;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    border: 0;
    background: var(--primary-color);
    font-size: 12px;
    line-height: 1;
    color: #fff;
    text-align: center;
    font-weight: bold;

}

.dd-item > button:before {
  content: '+';
  display: block;
  position: absolute;
  width: 100%;
  text-align: center;
  text-indent: 0;
}

.dd-item > button[data-action="collapse"]:before {
  content: '-';
}

.dd-placeholder,
.dd-empty {
  margin: 5px 0;
  padding: 0;
  min-height: 30px;
  background: #f2fbff;
  border: 1px dashed #b6bcbf;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.dd-empty {
  border: 1px dashed #bbb;
  min-height: 100px;
  background-color: #e5e5e5;
  background-image: -webkit-linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff),
    -webkit-linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff);
  background-image: -moz-linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff),
    -moz-linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff);
  background-image: linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff),
    linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff);
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px;
}

.dd-dragel {
  position: absolute;
  pointer-events: none;
  z-index: 9999;
}

.dd-dragel > .dd-item .dd-handle {
  margin-top: 0;
}

.dd-dragel .dd-handle {
  -webkit-box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, .1);
  box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, .1);
}

/**
* Nestable Extras
*/
.nestable-lists {
  display: block;
  clear: both;
  padding: 30px 0;
  width: 100%;
  border: 0;
  border-top: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
}

#nestable-menu {
  padding: 0;
  margin: 20px 0;
}

#nestable-output,
#nestable2-output {
  width: 100%;
  height: 7em;
  font-size: 0.75em;
  line-height: 1.333333em;
  font-family: Consolas, monospace;
  padding: 5px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

#nestable2 .dd-handle {
  color: #fff;
  border: 1px solid #999;
  background: #bbb;
  background: -webkit-linear-gradient(top, #bbb 0%, #999 100%);
  background: -moz-linear-gradient(top, #bbb 0%, #999 100%);
  background: linear-gradient(top, #bbb 0%, #999 100%);
}

#nestable2 .dd-handle:hover {
  background: #bbb;
}

#nestable2 .dd-item > button:before {
  color: #fff;
}

.dd + .dd {
  margin-left: 2%;
}

.dd-hover > .dd-handle {
  background: #2ea8e5 !important;
}

/**
* Nestable Draggable Handles
*/
.dd3-content {
  display: block;
  height: 30px;
  margin: 5px 0;
  padding: 5px 10px 5px 40px;
  color: #333;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid #ccc;
  background: #fafafa;
  background: -webkit-linear-gradient(top, #fafafa 0%, #eee 100%);
  background: -moz-linear-gradient(top, #fafafa 0%, #eee 100%);
  background: linear-gradient(top, #fafafa 0%, #eee 100%);
  -webkit-border-radius: 3px;
  border-radius: 3px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.dd3-content:hover {
  color: #2ea8e5;
  background: #fff;
}

.dd-dragel > .dd3-item > .dd3-content {
  margin: 0;
}

.dd3-item > button {
  margin-left: 30px;
}

.dd3-handle {
  position: absolute;
  margin: 0;
  left: 0;
  top: 0;
  cursor: pointer;
  width: 30px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  border: 1px solid #aaa;
  background: #ddd;
  background: -webkit-linear-gradient(top, #ddd 0%, #bbb 100%);
  background: -moz-linear-gradient(top, #ddd 0%, #bbb 100%);
  background: linear-gradient(top, #ddd 0%, #bbb 100%);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.dd3-handle:before {
  content: '≡';
  display: block;
  position: absolute;
  left: 0;
  top: 3px;
  width: 100%;
  text-align: center;
  text-indent: 0;
  color: #fff;
  font-size: 20px;
  font-weight: normal;
}

.dd3-handle:hover {
  background: #ddd;
}

/*
* Nestable++
*/
.action-btn{    display: inline-flex;
  position: absolute;
  right: -108px;
  top: 0;}
.button-delete {
  width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--danger-color);
  border-radius: 4px;
  color: var(--bg-primary);
  font-weight: bold;
  cursor: pointer;
}

.button-delete:hover{
  background: var(--danger-hover);
}
.button-edit {
  width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: 15px;
  background: var(--primary-color);
  border-radius: 4px;
  color: var(--bg-primary);
  cursor: pointer;
  border-color: unset;
}

.button-edit:hover{
  background: var(--primary-dark);
}

#saveButton {
  padding-right: 30px;
  padding-left: 30px;
}

.output-container {
  margin-top: 20px;
}

#json-output {
  margin-top: 20px;
}

.table-body-list{display: flex;}
.table-body-list .menu-list .inner-menu-list{margin: 0; padding: 0;border: 1px solid var(--border-color) ;}
.table-body-list .menu-list{display: flex;width: 100%;flex-flow: column;}
.table-body-list .menu-list .inner-menu-list{display: flex; flex-flow: column;}
.table-body-list .menu-list .inner-menu-list li{width: 100%;}
.table-body-list .menu-list .inner-menu-list li label{display: flex;justify-content: space-between;padding: 10px;cursor: pointer;font-size: 14px;}
.table-body-list .menu-list .inner-menu-list li ul {padding: 0 0 0 30px;display: flex; flex-flow: column;}
.table-body-list .menu-list .inner-menu-list li:hover>ul{display: flex;}
.table-body-list .menu-list .inner-menu-list li:hover> label span .icon-rotate{transform: rotate(90deg);}

.height-segment{height: 100%;}
section.content-wapper .common-panel.height-segment .panel-body.user-profile{position: relative;}
section.content-wapper .common-panel.height-segment .panel-body.user-profile .table-body .dataTables_wrapper{position: unset;height: 92%;overflow: auto;}
section.content-wapper .common-panel.height-segment .panel-body.user-profile .dataTables_info, 
section.content-wapper .common-panel.height-segment .panel-body.user-profile .dataTables_paginate
{position: absolute;bottom: 15px;}
section.content-wapper .common-panel.height-segment .panel-body.user-profile .dataTables_info {left: 15px;}
section.content-wapper .common-panel.height-segment .panel-body.user-profile .dataTables_paginate {right: 15px;}

section.content-wapper .common-panel.height-segment .panel-body.user-profile .table-body .dataTables_wrapper::-webkit-scrollbar {width: 8px;border-radius:8px}
section.content-wapper .common-panel.height-segment .panel-body.user-profile .table-body .dataTables_wrapper::-webkit-scrollbar-track {box-shadow: inset 0 0 6px #B1BFCB;}
section.content-wapper .common-panel.height-segment .panel-body.user-profile .table-body .dataTables_wrapper::-webkit-scrollbar-thumb {background-color: var(--primary-dark);/* outline: 1px solid #B1BFCB; */border-radius:8px}

@media (max-width: 767px) {
  nav.site-nav{width: 100%;position: sticky;height: auto;z-index: 10;}
  nav.site-nav.open{width: 100%;}
  nav.site-nav.open .company-logo .pic{opacity: 1;}
  nav.site-nav .company-logo .pic{opacity: 1;}
  nav.site-nav .company-logo .pic img{height: 60px;}
  nav.site-nav .company-logo{display: flex;justify-content: space-between;}
  nav.site-nav .company-logo .toggle-icon{display: inline-flex;} 
  nav.site-nav .company-logo .toggle-icon button{padding: 15px;}
  nav.site-nav .inner-nav{display: none;}
  nav.site-nav.open .inner-nav{position: absolute;top: 81px;display: flex;flex-flow: column; height: calc(100vh - 230px);background: var(--bg-primary);}
  section.main-wrapper{flex-flow: wrap;}
  nav.site-nav.open .company-logo{display: flex;}
  nav.site-nav .sign-out{display: none;}
  main.site-content{padding: 0 0 0 0;width: 100%;}
  header.top-header{height: unset;padding: 10px 0;order: 2;    position: sticky;
    bottom: 0;
    z-index: 11;}
  header.top-header .toggle-icon{display: none;}
  header.top-header .right-wrapper{width: 100%;flex-flow: wrap;}
  nav.site-nav.open .inner-nav{display: flex;}
  .company-selection{margin-left: 0;}
  .footer-section{order: 3;}
  section.content-wapper{padding: 0;}
  .company-selection .selection-list{    top: unset;
    bottom: 100%;}
    .dataTables_length, .dataTables_filter{text-align: left !important;}

    .vcol-1,
.vcol-2, 
.vcol-3,
.vcol-4,
.vcol-5, 
.vcol-6, 
.vcol-7, 
.vcol-8, 
.vcol-9, 
.vcol-10,
.vcol-11, 
.vcol-12 {width: 100%;}
.card-body{width: 100%; overflow: auto;}
.datatable-top, .datatable-bottom{text-align: left;}
.datatable-pagination{text-align: left;}
.datatable-search{float: unset;}
}
