/*
* demo.css
* File include item demo only specific css only
******************************************************************************/
.justify-content-space-between{
  justify-content: space-between;
}
.float-left {
  float: left;
}
.float-right {
  float: right;
}
.badge-success {
  background: #56ca00;
}

.badge-info {
  background: #007bff;
}

.badge-warning {
  background: #ffc107;
}

.badge-danger {
  background: #dc3545;
}

.badge-light {
  background: #f8f9fa;
}

.badge-dark {
  background: #343a40;
}

.badge-primary {
  background: #007bff;
}

.badge-secondary {
  background: #6c757d;
}
                                                
.light-style .menu .app-brand.demo {
  height: 64px;
}

.dark-style .menu .app-brand.demo {
  height: 64px;
}

/* .app-brand-logo.demo svg {
  width: 30px;
  height: 24px;
} */

.app-brand-text.demo {
  font-size: 1.25rem;
}

/* ! For .layout-navbar-fixed added fix padding top tpo .layout-page */
.layout-navbar-fixed .layout-wrapper:not(.layout-without-menu) .layout-page {
  padding-top: 64px !important;
}

/* Navbar page z-index issue solution */
.content-wrapper .navbar {
  z-index: auto;
}

/*
* Content
******************************************************************************/

.demo-blocks > * {
  display: block !important;
}

.demo-inline-spacing > * {
  margin: 1rem 0.375rem 0 0 !important;
}

/* ? .demo-vertical-spacing class is used to have vertical margins between elements. To remove margin-top from the first-child, use .demo-only-element class with .demo-vertical-spacing class. For example, we have used this class in forms-input-groups.html file. */
.demo-vertical-spacing > * {
  margin-top: 1.25rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.demo-vertical-spacing-lg > * {
  margin-top: 1.875rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing-lg.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.demo-vertical-spacing-xl > * {
  margin-top: 5rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing-xl.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.rtl-only {
  display: none !important;
  text-align: left !important;
  direction: ltr !important;
}

[dir='rtl'] .rtl-only {
  display: block !important;
}

/* Dropdown buttons going out of small screens */
@media (max-width: 576px) {
  #dropdown-variation-demo .btn-group .text-truncate {
    width: 300px;
    position: relative;
  }
  #dropdown-variation-demo .btn-group .text-truncate::after {
    position: absolute;
    top: 45%;
    right: 0.65rem;
  }
}
/*
* Layout demo
******************************************************************************/

.layout-demo-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 1.25rem;
}
.layout-demo-placeholder img {
  width: 900px;
}
.layout-demo-info {
  text-align: center;
  margin-top: 1.25rem;
}



/*-------------------- 23. Login ------------------- */

.login-area {
  background: #F3F8FB;
}

.login-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
}

.login-box form {
  margin: auto;
  width: 450px;
  max-width: 100%;
  background: #fff;
  border-radius: 3px;
}

.login-form-head {
  text-align: center;
  background: #8655FC;
  padding: 50px;
}

.login-form-head h4 {
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 7px;
  color: #fff;
}

.login-form-head p {
  color: #fff;
  font-size: 14px;
  line-height: 22px;
}

.login-form-body {
  padding: 50px;
}

.form-gp {
  margin-bottom: 25px;
  position: relative;
}

.form-gp label {
  position: absolute;
  left: 0;
  top: 0;
  color: #b3b2b2;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.form-gp.focused label {
  top: -15px;
  color: #7e74ff;
}

.form-gp input {
  width: 100%;
  height: 30px;
  border: none;
  border-bottom: 1px solid #e6e6e6;
}

.form-gp input::-webkit-input-placeholder {
  color: #dad7d7;
}

.form-gp input::-moz-placeholder {
  color: #dad7d7;
}

.form-gp input:-ms-input-placeholder {
  color: #dad7d7;
}

.form-gp input:-moz-placeholder {
  color: #dad7d7;
}

.form-gp i {
  position: absolute;
  right: 5px;
  color: #7e74ff;
  font-size: 16px;
}

.form-gp.has-error, .form-gp.has-error label, .form-gp.has-error input, .form-gp.has-error input::placeholder, .form-gp.has-error i {
  color: var(--red);
}

.rmber-area {
  font-size: 13px;
}

.submit-btn-area {
  text-align: center;
}

.submit-btn-area button {
  width: 100%;
  height: 50px;
  border: none;
  background: #fff;
  color: #585b5f;
  border-radius: 40px;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 600;
  font-size: 12px;
  box-shadow: 0 0 22px rgba(0, 0, 0, 0.07);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.submit-btn-area button:hover {
  background: #2c71da;
  color: #ffffff;
}

.submit-btn-area button i {
  margin-left: 15px;
  -webkit-transition: margin-left 0.3s ease 0s;
  transition: margin-left 0.3s ease 0s;
}

.submit-btn-area button:hover i {
  margin-left: 20px;
}

.login-other a {
  display: block;
  width: 100%;
  max-width: 250px;
  height: 43px;
  line-height: 43px;
  border-radius: 40px;
  text-transform: capitalize;
  letter-spacing: 0;
  font-weight: 600;
  font-size: 12px;
  box-shadow: 0 0 22px rgba(0, 0, 0, 0.07);
}

.login-other a i {
  margin-left: 5px;
}

.login-other a.fb-login {
  background: #8655FC;
  color: #fff;
}

.login-other a.fb-login:hover {
  box-shadow: 0 5px 15px rgba(44, 113, 218, 0.38);
}

.login-other a.google-login {
  background: #fb5757;
  color: #fff;
}

.login-other a.google-login:hover {
  box-shadow: 0 5px 15px rgba(251, 87, 87, 0.38);
}

.form-footer a {
  margin-left: 5px;
}

/* login-s2 */
.login-form-body .form-gp label {
  top: -18px;
}
.login-s2 {
  background: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.login-s2:before {
  content: '';
  position: absolute;
  height: 206%;
  width: 97%;
  background: #fcfcff;
  border-radius: 50%;
  left: -42%;
  z-index: -1;
  top: -47%;
  box-shadow: inset 0 0 51px rgba(0, 0, 0, 0.1);
}

.login-s2 .login-form-head,
.login-s2 .login-box form,
.login-s2 .login-box form .form-gp input {
  background: transparent;
}

.login-s2 .login-form-head h4,
.login-s2 .login-form-head p {
  color: #444;
}

/* login-s3 */

.login-bg {
  background: url(../images/bg/singin-bg.jpg) center/cover no-repeat;
  position: relative;
  z-index: 1;
}

.login-bg:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  background: #272727;
  opacity: 0.7;
}



/* register 4 page */

.login-box-s2 {
  min-height: 100vh;
  background: #f9f9f9;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.login-box-s2 form {
  margin: auto;
  background: #fff;
  width: 100%;
  max-width: 500px;
}

.content-wrapper.blur{
  opacity: 0.5;
  width: 100%;
  height: 100%;
}
/*-------------------- END Login ------------------- */
#preloader {
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite; /* Animation */
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -60px; /* Half of width */
  margin-top: -60px; /* Half of height */
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.modal-dialog.add_label {
  width: 20% !important;
}

.show-at-modal{
  z-index: 99999 !important;
}

.form_group.position-relative .alert_info {
  position: absolute;
  right: 10px;
  top: 30px;
  font-size: 16px;
}
.input_icon.position-relative .mdi{
  position: absolute;
  width: fit-content;
  right: 10px;
  top: 16px !important;
  font-size: 16px;
}
.input_icon.position-relative .mdi.search-loading{
  position: absolute;
  width: fit-content;
  right: 10px;
  top: 6px !important;
  font-size: 16px;
}
.input_icon.position-relative .badge{
  position: absolute;
  width: fit-content;
  right: 10px;
  top: 6px !important;
}

.form_group.position-relative .Duplicates__warning {
  color: #ffd24a;
  cursor: pointer;
}
.form_group.position-relative .search-loading, .input_icon.position-relative .search-loading {
  color: green;
}

div.organization-list-container {
  position: absolute;
  max-height: 250px;
  top: 38px;
  background: #fff;
  z-index: 999;
  box-shadow: 0px 1px 3px 1px;
  width: -webkit-fill-available;
  transition: 0.5s;
}
div.organization-list-container ul.organization-list{
  list-style: none;
  padding-left: 0;
}
div.organization-list-container ul.organization-list span.organization-address {
  display: block;
  font-size: 12px;
}

div.organization-list-container ul.organization-list li {
  color: #2e2e2e;
  padding: 10px;
  cursor: pointer;
}

div.organization-list-container ul.organization-list li:hover{
  color: #ffffff;
  background: #2c71da;
}

div.organization-list-container a.create-new-organization {
  cursor: pointer;
  display: block;
  padding: 10px 3px;
  color: #2c71da !important;
}

div.organization-list-container a.create-new-organization:hover {
  color: #ffffff !important;
  background: #2c71da;
}

.badge.badge-primary {
  color: #fff;
  background: #0d68c5;
  border-radius: 20px;
  font-size: 11px;
}

div.Duplicates__header {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  border-bottom: 1px solid #afadb2;
  background: #f5f5f6;
}

ul.duplicate-dropdown-list {
  position: absolute;
  min-height: 100px;
  background: #fff;
  z-index: 9999;
  list-style: none;
  padding-left: 0;
  width: 100%;
  box-shadow: 0px 1px 2px 0px;
  overflow: hidden;
}

ul.duplicate-dropdown-list li {
  padding: 10px;
  cursor:pointer;
}

ul.duplicate-dropdown-list li:hover {
  color: #fff;
  background: #0d68c5;
}

button.remove_email_field, button.remove_phone_field {
  border: none;
  color: #6a6a67;
  background: #f3f2f2;
  border-radius: 5px;
}

button.remove_email_field:hover, button.remove_phone_field:hover {
  color: #313131;
  background: #d9d9d9;
}
input[disabled], select[disabled] {
  background: #f5f5f6;
  border-color: rgba(33,35,44,12);
  cursor: not-allowed;
}
a.add_more_feild.disabled {
  color: #bcbcc4 !important;
  border-color: rgba(33,35,44,12);
  cursor: not-allowed;
  text-decoration: none;
  pointer-events: none;
}
.person-details-name a {
  font-size: 22px;
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  color: #646464;
}
.person-details-name span {
  width: 50px !important;
  height: 51px;
  background: #63a7e1;
  padding: 9px;
  border-radius: 50px;
  display: block;
  color: #fff;
  margin-right: 10px;
  text-align: center;
  
}
div.person-details-organization {
  margin: 10px;
  color: #646464;
}
div.person-details-organization a{
  color: #646464;
}
div.person-details-email {
  margin: 10px;
  color: #646464;
}
div.person-details-phone {
  margin: 10px;
  color: #646464;
}

/* setting */
.hidden-file{
  visibility: hidden;
}
.user-profile img.form-image{
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.profile-box{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-right: 15px;
}
.profile-box-{
  margin-left: 15px;
  color: #646464;
}
.btn-link{
  color: #5689bd;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.5s;
  display: inline;
  width: fit-content;
}

.btn-link:hover{
  color: #0d68c5;
}

button#remove-profile-button {
  padding: 0;
  background: none !important;
  border: none;
  outline: none;
  color: #ff4c51;
  margin-left: 10px;
  text-transform: capitalize;
  box-shadow: none;
}
button#remove-profile-button:hover{
  color: #ff4c51 !important;
}

.loading .spiner_loader {
  width: 40px;
  height: 40px;
  border: 2px solid #FFF;
  border-bottom-color: #2d8647;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  }

  @keyframes rotation {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
  } 

.loading {
  position: relative;
}

.loading .spiner_loader {
  background: #fff;
}
.loading img{
  display:none;
}

td.editable-td.active {
  outline: 2px solid #0999ed;
}

.owner-profile-img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.editable-td {
  position: relative;
}

.editable-td .edit-btn, .editable-td .delete-btn {
  position: absolute;
  right: 3px;
  top: 2px;
  border: 1px solid var(--border_color);
  box-shadow: none !important;
}

.editable-td .edit-btn i::before , .editable-td .delete-btn i::before {
  font-size: 14px;
}

.char-filter input {
  display: none;
}

.char-filter label {
  font-size: 12px;
  padding: 2px 12px;
  margin-right: 5px;
  font-weight: 600;
  border-radius: 4px;
  transition: 0.5s;
  cursor: pointer;
  color: #21232c !important;
  font-family: Arial, Helvetica, sans-serif;
}

.char-filter {
  margin-top: 10px;
}

.char-filter input:checked + label {color: #0d68c5 !important;background: #eff6ff;}

.char-filter label:hover {
  background: #eff6ff;
}

.loading .small_spiner_loader {
  width: 20px;
  height: 20px;
  border: 2px solid #FFF;
  border-bottom-color: #2d8647;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  margin-right: 10px;
}
.span-link {
  color: #2b74da;
  cursor: pointer;
}
._form.active {
  display: block;
  width: 100%;
  background-color: #ececed;
}

/* table popup  */
.table-popup {
  position: fixed;
  top: 10%;
  right: -100%;
  width: 300px;
  height: 100%;
  background-color: white;
  box-shadow: -2px 0 5px rgba(0,0,0,0.3);
  transition: right 0.3s ease-in-out;
  z-index: 1000;
  overflow-y: auto;
  padding: 20px;
}

.table-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.table-popup-title {
  font-size: 18px;
  font-weight: bold;
}

.table-popup-close {
  cursor: pointer;
  font-size: 24px;
}

.table-popup-body,
.table-popup-footer {
  margin-bottom: 20px;
}

.table-popup-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.table-popup-label {
  font-weight: bold;
}

.table-popup-value {
  cursor: pointer;
  word-break: break-word;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

/* custom select  */
/* Basic styles for custom select */
.custom-select-container {
  position: relative;
  display: inline-block;
  width: 200px;
}

.custom-select-input {
  width: 100%;
  box-sizing: border-box;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.custom-select-list {
  display: none;
  position: absolute;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  max-height: 150px;
  overflow-y: auto;
  z-index: 1000;
  padding:5px;
}

.custom-select-list li {
  padding: 8px;
  cursor: pointer;
padding-left: 15px;

}
.custom-select-list li.active {
    background-color: #2b74da;
    color: #fff;
 
}

.custom-select-list li:hover {
    background-color: #2b74da;
}

.custom-select-list.show {
  display: block;
}



