:root {
  --kdark: #000000;
  --kwhite: #ffffff;
  --kgreen: #42ada5;
  --koffwhite: #e6e6e6;
}
body {
  padding-top: 4.7rem;
  font-family: 'Open Sans', sans-serif;
  background: url(../img/bg.png) center center / cover no-repeat rgba(0, 0, 0, 0.04);
  font-size: 14px;
}
main{
  min-height: 82vh;
}
a{
  color: var(--kgreen);
  font-size: 14px;
  font-weight: bold;
}
a:hover{
  color: var(--kgreen);
}
.starter-template {
  padding: 3rem 1.5rem;
  text-align: center;
}

.navbar{
  padding-left: 10%;
  padding-right: 10%;
  border-bottom: #afafaf 2px solid;
  background-color: rgb(0 0 0 / 60%);
}

.navbar img {
  max-height: 50px;
}

.navbar #profileDIV {
  color: var(--kwhite);
  margin-right: 10px;
}

.navbar #profileDIV img {
  height: 40px;
  border: 1px solid var(--kwhite);
  border-radius: 50%;
  padding: 4px;
  /* margin-left: 10px; */
}

.btn-circle {
  border-radius: 50%;
  padding-top: 7px;
  padding-bottom: 7px;
}

#logoutBTN {
  margin-left: 10px;
}

#dmLoadingDIV {
  position: fixed;
  z-index: 999999;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #333a54;
  color: var(--kwhite);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#dmLoadingDIV img {
  height: 100px;
}

.pull-right {
  float: right;
}

#systemNotificationBar {
  display: none;
  position: fixed;
  z-index: 1031;
  top: 0;
  width: 100%;
  background-color: green;
  color: var(--kwhite);
  min-height: 76px;
  text-align: center;
  padding: 10px;
  font-size: 20px;
  font-weight: bold;
}

#systemNotificationBar.danger {
  background-color: #e35138;
}

#systemNotificationBar.info {
  background-color: #17a2b8;
  font-size: 16px;
  font-style: italic;
  font-weight: normal;
}

#systemNotificationDIV .alert {
  margin-bottom: 0;
}

#mainContent {
  /* margin-top: 50px; */
  padding: 0px 10%;
}
footer{
  padding: 20px 10% 40px;
  border-top: #afafaf 2px solid;
  background-color: rgb(0 0 0 / 60%)!important;
}
.footer-panel{
  width: 15%;
  float: left;
}
.footer-panel:first-child,.footer-panel:nth-child(4){
  width: 27%;
}
.card {
  border: none;
  box-shadow: 0px 0px 13px 0px #c7c7c7;
  margin-bottom: 25px;
}

.card-header {
  background-color: #4F5F74;
  background-color: #343b3f;
  /*background-color: #323A45;*/
  color: var(--kwhite);
  border-bottom: 0;
  border-radius: .25rem .25rem 0 0;
}

.card-block {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
}

.card-footer {
  background-color: #E5E9EF;
  border: none;
}

.ql-toolbar.ql-snow {
  border: none;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background: #f4f4f4;
  border-bottom: 1px dashed #616a90;
  border-bottom: 1px solid #ccc;
}

.ql-container.ql-snow {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  background: #f4f4f4;
  border: none;
}

#profile-menu,.languages{
  list-style: none;
}

#profile-menu,.languages {
    padding: 0;
  width: 60px;
  position: relative;
  margin: 0px 0px 0px 10px;
  height:35px;
}
#profile-menu li,.languages li {
    display: none;
    list-style-type: none;
}
#profile-menu li p,.languages li p {
    background: none repeat scroll 0 0 var(--kdark);
    color: var(--kwhite);
    display: block;
    font-size: 14px;
    padding: 10px 0;
    text-align: center;
    width: 60px;
    margin: 0px;
    cursor: pointer;
}
#profile-menu li a {
    font-weight: normal;
}
#profile-menu li a:hover {
    text-decoration: none;
}
#profile-menu li p {
    padding: 10px 0;
    width: 100px;
}
#profile-menu li p:hover,.languages li p:hover {
    background: none repeat scroll 0 0 #333;
    border: medium none;
    color: var(--kwhite);
}
#profile-menu li.active,.languages li.active {
    display: block;
}

#profile-menu #profileDIV{
  background: transparent;
  padding: 0px;
}

#profile-menu p a,#menuDrName{
  color: var(--kwhite);
}


.footer-panel h4,.footer-panel h6,.footer-panel a,.footer-panel span{
  color: var(--kwhite);
}

.footer-panel span{
  margin: 5px;
  font-size: 20px;
}

.footer-panel p{
  margin: 0px;
}

.footer-panel p{
  margin: 0px;
}

.loggedInOnly{
  display: none;
}
.submenu{
  background-color: #DCDCDC;
  width: 100%;
  min-height: 50px;
  position: fixed;
  z-index: 999;
  padding: 15px 10%;
}
.submenu ul{
      list-style: none;
      display: flex;
      padding: 0px;
      margin: 0px;
}
.submenu ul li{
  padding: 0px 30px 0px 0px;
}
.submenu ul li a{
  color: #757575;
}
.submenu ul li .active{
  color: var(--kgreen);
}
.home-head,.edit-member-info{
  width: 100%;
  background-color: #F5F5F5;
  padding: 20px;
}
.home-head .head-left{
  border-right: #868686 1px solid;
}
#head-shipping,#head-email{
  border-bottom: #868686 1px solid;
  margin-bottom: 10px;
}
.home-head .head-left,.home-head .head-right{
  width: 50%;
  float: left;

}
.innerpage-wrapper{
  padding: 0px 0px 40px;
    position: relative;
}
.pic-area{
  padding: 10px;
  width: 168px;
  float: left;
  position: relative;
}
.profile-button{
  display: block;
  position: absolute;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  color: var(--kwhite);
  font-size: 20px;
  border-radius: 50%;
  background-color: #4a4a4a;
  padding: 0px 7px;
  width: 30px;
  height: 30px;
}
.profile-button i{
  font-size: 15px;
}
.pic-area:hover > .profile-button,.image-wrp:hover > .profile-button{
  display: block;
}
.name-area{
  /* width: 70%; */
  float: left;
  padding: 10px;
}
.name-area p{
  margin-bottom: 5px;
}
.pic-area p{
  margin-top: 10px;
}
.pic-area p a,.pic-area p button{
  width: 100%;
}
#profile-pic{
  width: 100%;
}
#loginPage #loginBTN,#resetBTN{
  width:100%;
}
.clr{
  clear: both;
}

.fancyTab {
	text-align: center;
  padding:15px 0;
  background-color: #eee;
	box-shadow: 0 0 0 1px #ddd;
	top:15px;
  transition: top .2s;
}

.fancyTab.active {
  top:0;
  transition:top .2s;
}

.whiteBlock {
  display:none;
}

.fancyTab.active .whiteBlock {
  display:block;
  height:2px;
  bottom:-2px;
  background-color:var(--kwhite);
  width:99%;
  position:absolute;
  z-index:1;
}

.fancyTab a {
	font-size:12px;
	font-weight:300;
  transition:.2s;
  color:#333;
}

.fancyTabs {
	border-bottom:2px solid #ddd;
  margin: 15px 0 0;
}

li.fancyTab a {
  padding-top: 15px;
  top:-15px;
  padding-bottom:0;
}

li.fancyTab.active a {
  padding-top: inherit;
}

.fancyTab .fa {
  font-size: 40px;
	width:100%;
	padding: 15px 0 5px;
  color:#666;
}

.fancyTab.active .fa {
  color: #cfb87c;
}

.fancyTab a:focus {
	outline:none;
}

.fancyTabContent,.search-box-area {
  border-color: transparent;
  box-shadow: 0 -2px 0 -1px var(--kwhite), 0 0 0 1px #ddd;
  padding: 30px 15px 15px;
  position:relative;
  background-color:var(--kwhite);
}

.nav-tabs > li.fancyTab.active > a,
.nav-tabs > li.fancyTab.active > a:focus,
.nav-tabs > li.fancyTab.active > a:hover {
	border-width:0;
}

.nav-tabs > li.fancyTab:hover {
	background-color:#f9f9f9;
	box-shadow: 0 0 0 1px #ddd;
}

.nav-tabs > li.fancyTab.active:hover {
  background-color:var(--kwhite);
  box-shadow: 1px 1px 0 1px var(--kwhite), 0 0px 0 1px #ddd, -1px 1px 0 0px #ddd inset;
}

.nav-tabs > li.fancyTab:hover a {
	border-color:transparent;
}

.nav.nav-tabs .fancyTab a[data-toggle="tab"] {
  background-color:transparent;
  border-bottom:0;
}

.nav-tabs > li.fancyTab:hover a {
  border-right: 1px solid transparent;
}

.nav-tabs > li.fancyTab > a {
	margin-right:0;
	border-top:0;
  padding-bottom: 30px;
  margin-bottom: -30px;
}

.nav-tabs > li.fancyTab {
	margin-right:5px;
	margin-bottom:0;
  width:13%;
  padding: 10px 0px;
}

.nav-tabs > li.fancyTab:last-child a {
  border-right: 1px solid transparent;
}

.nav-tabs > li.fancyTab.active:last-child {
  border-right: 0px solid #ddd;
	box-shadow: 0px 2px 0 0px var(--kwhite), 0px 0px 0 1px #ddd;
}

.nav-tabs .lasttab{
  width:19%;
}

.fancyTab:last-child {
  box-shadow: 0 0 0 1px #ddd;
}

.tabs .nav-tabs li.fancyTab.active a {
	box-shadow:none;
  top:0;
  font-weight: 800;
}


.fancyTab.active {
  background: var(--kwhite);
	box-shadow: 1px 1px 0 1px var(--kwhite), 0 0px 0 1px #ddd, -1px 1px 0 0px #ddd inset;
  padding-bottom:0px;

}


.pmodal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1030; /* Sit on top */
  padding-top: 10%; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.pmodal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 70%;
}

/* The Close Button */
.pclose {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.pclose:hover,
.pclose:focus {
  color: var(--kdark);
  text-decoration: none;
  cursor: pointer;
}

#nev-tree{
  margin-top: 0px;
  padding: 25px 10%;
}
#nev-tree span{
  padding-right: 10px;
  text-transform: uppercase;
}

#nev-tree a{
  color: #828282;
}

#memberDetailFieldsDIV .edit-profile-wrapper{
  width:100%;
}
#memberDetailFieldsDIV .edit-profile-wrapper .pic-area{
  width:15%;
  float:left;
  padding:0px 5px;
}
#memberDetailFieldsDIV .edit-profile-wrapper .name-wrap{
  width:85%;
  float:left;
  padding:0px 20px;
}
#memberDetailFieldsDIV .edit-profile-wrapper .text2-wrap{
  width:50%;
  float:left;
}
#memberDetailFieldsDIV .edit-profile-wrapper .text1-wrap{
  width:28%;
  float:left;
  padding:0px 20px;
}
.p-item{
  color:#828282;
}
#formElements,#kformElements {
  clear: both;
  padding-top: 20px;
}
#formElements .group:not(:first-child),#kformElements .group:not(:first-child) {
  margin-top: 20px;
  padding-top: 20px;
}
#formElements .group h4,#kformElements .group h4,#userDataContainer .group h4,#detailFieldsDIV .group h4 {
  padding-bottom: 5px;
  border-bottom: 2px solid #a6a6a6;
  width: 100%;
  margin-bottom: 20px;
}

#formElements .col-xs-12,#kformElements .col-xs-12 {
  clear:both;
  width: 100%;
  padding: 0 20px;
}
.item-header h5{
  margin:20px 0px 0px 20px;
}
.btn-success{
  background-color: var(--kgreen);
  border-color:var(--kgreen);
}
.btn-primary{
  background-color: var(--koffwhite);
  border-color:var(--koffwhite);
  color: #493535;
}
.btn-primary:hover{
  background-color: var(--kgreen);
  border-color:var(--kgreen);
  color: #493535
}
.btn-success:hover{
  background-color: var(--kdark);
  border-color:var(--kdark);
}
.btn-dark,.btn-secondary{
  background-color: var(--kdark);
  border-color:var(--kdark);
}
.btn-dark:hover,.btn-secondary:hover{
  background-color: var(--kgreen);
  border-color:var(--kgreen);
}
.image-wrp{
  width: max-content;
    margin: auto;
    position: relative;
}
.button-last{
  display:none;
}

#profileDIV{
  width: 70px !important;
}
.detail-left, .detail-right{
  float:left;
  position: relative;
}
.detail-left{
  width:70%;
  padding-right: 10px;
}
.detail-right{
  padding-left: 10px;
  border-left: var(--kdark) 1px solid;
  width:30%;
}
.simulationapprove,.simulationdecline{
  width: max-content;
  float: left;
  padding: 5px 10px;
  cursor: pointer;
}
.simulationapprove.active,.simulationdecline.active{
  background-color: #007bff !important;
}

.roundedp{
  width:100px;
  margin-bottom: 20px;
  border-radius: 50%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  cursor:pointer;
}
.gray-color{
  background-color: #969696 !important;
  border-color: #969696 !important;
}
.gray-color:hover{
  background-color: #c3c3c3 !important;
  border-color: #c3c3c3 !important;
}

#loginPage {
  /* position: fixed; */
  z-index: 99999999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
}

#loginPage #flexDIV {
  display: flex;
  /* height: 100vh; */
}


#loginPage #left {
  width: 50%;
}

#loginPage #left {
  text-align: center;
}

#loginPage #left .card {
  text-align: left;
}

#loginPage #left a {
  color: var(--kdark);
  font-style: italic;
}

#loginPage #loginLogo img {
  max-width: 100%;
  margin-bottom: 20px;
}

#loginPage #loginBTN {
  float: none;
}

#loginPage #right {
  width: 45%;
      padding: 10% 0%;
      margin: auto;
}
#loginPage .card-footer{
  background: transparent;
  padding: 0px 10% 20px !important;
}

#loginPage .transparentDIV {
  background-color: rgba(255, 255, 255, .7);
  /*padding: 20px;*/
}

#loginPage .transparentDIV img {
  max-width: 100%;
  margin-bottom: 20px;
}

#loginPage .moreInfoArrow {
  display: none;
  position: absolute;
  bottom: 20px;
  color: var(--kwhite);
  width: calc(100% - 80px);
  font-size: 12px;
  font-style: italic;
}

#loginPage .header-wrapper{
  height: 50px;
  width: 100%;
  position: relative;
}

#loginPage #loginDIV{
  box-shadow: 10px 10px 0px 0px var(--kgreen) !important;
}

#loginPage .card-header{
  background: none;
  color: var(--kdark);
    text-align: center;
    padding-top: 25px;
    font-size: 20px;
    font-weight: 600;
}
#loginPage .card-body{
      padding: 0px 10%;
}

#loginPage input:-webkit-autofill,
#loginPage input:-webkit-autofill:hover,
#loginPage input:-webkit-autofill:focus,
#loginPage input:-webkit-autofill:active  {
    -webkit-box-shadow: 0 0 0 30px var(--kwhite) inset !important;
    background-color: var(--kwhite) !important;
    outline: none;
}

#loginPage #loginForm input{
  border: none;
  background-color: var(--kwhite);
  border-bottom: 2px solid #ced4da;
  border-radius: 0px;
  padding: 0px;
  outline: none;
  font-size: 14px;
  height: 25px;
}

#loginPage input:focus, #loginPage textarea:focus, #loginPage select:focus{
    outline: none;
}

#loginPage #showPassword{
  height: auto !important;
}

.margin-zero{
  margin: 0px;
}
#loginPage #rememberMe{
  height: auto !important;
}
#loginPage .pull-left{
  float: left;
  width: 40%;
}
.menuLoginBg{
  background-color:rgb(0 0 0 / 100%);
}
.mainBg{
  background-color: var(--kwhite);
}
.login-tab{
  display: flex;
    flex-flow: row wrap;
}
.login-tab-cell{
  flex: 0 0 auto;
    min-height: 0px;
    min-width: 0px;
    width: 100%;
    padding: 1rem;
}
.login-tab-cell .tabs{
  border-bottom: 1px solid #dbd9d9;
    background: none;
    list-style-type: none;
    text-align: center;
    font-weight: 500;
    border-top: none;
    border-left: none;
    border-right: none;
    display: flex;
    flex-flow: row wrap;
    padding: 0px;
    margin: 0px;
}
.login-tab-cell .tabs::before,.login-tab-cell .tabs::after{
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}

.login-tab-cell .tabs li{
  text-align: center;
  min-height: 0px;
    min-width: 0px;
    float: left;
    flex: 1 1 0px;
    width: auto;
    position: relative;
}
.login-tab-cell .tabs li a{
  padding: 1.25rem 1.5rem !important;
    color: #291d1e;
    display: block;
    font-size: 1rem;
    line-height: 1;
    text-decoration: none;
    transition: none;
    cursor: pointer;
}
.login-tab-cell .tabs li.active a{
  color:var(--kgreen);
  font-weight: bold;
}
.login-tab-cell .tabs li.active{
  font-weight: 700;
  border-bottom: var(--kgreen) .125rem solid;
}
.login-tab-cell .tabs li a:hover{
  color:var(--kgreen);
}
.form-group{
  position: relative;
}
.form-group i{
  position: absolute;
  right: 0;
  top: 30px;
  cursor: pointer;
  z-index: 999;
}
.form-group i:hover{
  color:var(--kgreen);
}
.notificationDiv{
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}
.DokuMe-badge{
  position: absolute;
  z-index: 2;
  margin-top: -7px;
  margin-left: -7px;
  font-size: 10px;
  border-radius: 50%;
  padding: 2px 5px;
  min-width: 17px;
  font-weight: bold;
  background-color: #e35138;
  color: #fff;
  border: 2px solid #333a54;
}
#DokuMe-Notifications.isAccess {
  top: 80px;
}
#DokuMe-Notifications {
  display: none;
  position: fixed;
  z-index: 7;
  top: 55px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  background-color: #f9f9f9;
}
.isVisible {
  display: block!important;
}
#DokuMe-Notifications:before {
  border: solid transparent;
  content: " ";
  border-bottom-color: #F9F9F9;
  border-width: 12px;
  position: absolute;
  z-index: -1;
  top: -22px;
  right: 45px;
}
.DokuMe-Nav-horizontal {
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-bottom: 1px solid #d6d6d6;
}
#DokuMe-Notifications i, #aside i {
  padding-top: 4px;
}
.DokuMe-Nav-horizontal i {
  font-size: 20px;
}
.DokuMe-Nav-horizontal a {
  color: #444;
}
.DokuMe-Nav-horizontal>* {
  font-size: 18px;
  height: 55px;
  padding-top: 14px;
}
#DokuMe-Notifications ul {
  list-style: none;
  text-align: left;
  overflow-x: auto;
  height: 90%;
}
.DokuMe-card-list{
  padding: 0px;
}
.DokuMe-card-list li {
  position: relative;
  width: 100%;
  background-color: #fff;
  margin-bottom: 2px;
  padding: 15px 30px 15px 30px;
  overflow-x: hidden;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
}
.DokuMe-card-list .remove {
  position: absolute;
  right: 20px;
  color: lightgrey;
}
.DokuMe-card-list img {
  margin-right: 10px;
  width: 35px;
  height: 35px;
  border: 1px solid #e35138;
  background-color: #2c2f3a;
}
.navbar-collapse{
  margin-left: auto;
  flex-grow:0;
}
.DM_NOTIFICATION_AMOUNT.badge{
  padding: 0.22em .22em;
  font-size: .65em;
}
.offcanvas-body img{
  width: 50px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.offcanvas-body strong.mb-1{
  color: var(--kgreen);
}
@media (min-width: 769px){
#DokuMe-Notifications {
    left: auto;
    bottom: auto;
    width: 412px;
    height: 60%;
    box-shadow: -1px 1px 1px 0 rgb(0 0 0 / 13%);
}
}

@media (max-width: 1200px) {

  .fancyTab .fa {
  	font-size: 36px;
  }

  .fancyTab .hidden-xs {
    font-size:22px;
	}
  .detail-left, .detail-right{
    width:100%;
    border: 0px;
    padding: 0px;
  }
  .nav-tabs > li.fancyTab{
    width:20%;
  }
}

@media (max-width: 992px) {

  .fancyTab .fa {
  	font-size: 33px;
  }

  .fancyTab .hidden-xs {
  	font-size:18px;
    font-weight:normal;
  }
}

@media (max-width: 900px) {

  .fancyTab > a {
    font-size:18px;
  }

  .nav > li.fancyTab > a {
    padding:15px 0;
    margin-bottom:inherit;
  }

  .fancyTab .fa {
    font-size:30px;
  }

  .nav-tabs > li.fancyTab > a {
    border-right:1px solid transparent;
    padding-bottom:0;
  }

  .fancyTab.active .fa {
    color: #333;
	}
  .nav-tabs > li.fancyTab{
    width:25%;
  }
}

@media (max-width: 768px) {
  #loginPage .moreInfoArrow {
    display: block;
  }
  #loginPage #flexDIV {
    height: auto;
    flex-direction: column;
  }

  #loginPage #right {
    /*display: none;*/
    width: auto;
  }

  #loginPage #left {
    width: 100%;
    min-height: 100vh;
    display: none;
  }
}

@media (max-width: 540px) {
  .footer-panel{
    width: 100% !important;
    margin-bottom: 20px;
  }
  .text1-wrap,.text2-wrap,.pic-area,.name-wrap,.home-head .head-left, .home-head .head-right,.nav-tabs > li.fancyTab,.create-patient{
    width: 100% !important;
  }
  .home-head .head-left{
    border-right: 0px;
  }
  .nav{
    display: block;
  }
  .nav-tabs .lasttab{
    display: none;
  }
  .button-last{
    display:block;
    width: 100%;
  }
  .navbar{
    padding-left: 2%;
    padding-right: 2%;
  }
  #profile-menu{
    float: right;
    margin: 0px;
  }
  #navbarsExampleDefault{
    flex-basis: auto;
    width: 60%;
  }

  #menuDrName{
    width: 70%;
    float: left;
    text-align: right;
    font-size: 12px;
    line-height: 35px;
  }
  .pmodal-content{
    padding: 0px;
    width: 95%;
  }
  .h4, h4{
    font-size: 1.2rem;
  }
  #mainContent{
    padding: 0px 3%;
  }
}
.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  }
  .lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid var(--kdark);
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: var(--kdark) transparent transparent transparent;
  }
  .lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
  }
  .lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
  }
  .lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
  }
  @keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
  }

  .dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: var(--kdark)!important;
    color: var(--kwhite)!important;
    border-radius: 7px!important;
    border: none!important;
  }

  .fancyTabContent, .search-box-area {
    margin: 0;
  }

  .btn{
    padding: 16px 40px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    line-height: normal;
  }

  #loginDIV .card-footer{
    text-align: center;
  }

  .DM_FULLSCREEN {
    position: fixed;
    z-index: 99999999;
    overflow: auto;
    margin: 0;
    padding: 0;
    padding-top: 20px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f0f5f9;
  }
  .modal-dialog{
    position: fixed;
    margin: auto;
    width: 70%;
    height: 100%;
    right: 0px;
    top: 10%;
  }
  .modal-center{
    width: 40%;
    float: left;
    background-color: #f6ebe4;
    padding: 0px;
    min-height: 400px;
  }
  .modal-right{
    width: 45%;
    float: left;
    
    text-align: center;
    min-height: 400px;
    padding: 0px;
  }
  .modal-left{
    width: 6%;
    float: left;
    background-color: #4aada4;
    min-height: 400px;
    color: #fff;
    padding: 0px;
  }

  .modal-left .left-text{
    transform: rotate(90deg);
    width: 310px;
    height: auto;
    left: -132px;
    top: 275px;
    position: relative;
  }
  .modal-left .left-text span{
    font-size: 22px;
    line-height: normal;
    text-align: center;
  }

  #addModule .container{
    padding: 0px;
    background-color: #f6ebe4;
    border: none;
  }
  #addModule .modal-image{
    margin: auto;
    width: 100%;
  }
  #addModule .modal-image img{
    margin: auto;
    width: 100%;
  }
  .modal-right img{
    width: 75%;
  }
  .modal-right .title{
    padding-top: 45px;
    font-size: 30px;
    font-weight: bold;
  }
  .modal-right .body{
    padding-bottom: 30px;
    font-size: 25px;
  }

  .modal-content .close{
    position: absolute;
    right: 10px;
    /* top: 10px; */
    background: transparent;
    border: none;
    font-size: 50px;
    line-height: 1;
  }

  .closerMessage{
    padding: 15px 30px 10px;
    text-align: center;
    background-color: #dc3911;
    color: #fff;
  }

  /* .popup {
    position: fixed;
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
  }

  .popup-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
  }

  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }

  .close:hover,
  .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }

  #openPopup {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  #openPopup:hover {
    background-color: #0056b3;
  } */