/*Scrollbar design*/

/* width */
::-webkit-scrollbar {
  width: 5px;
  height: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fbfbfb; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #e3e3e3;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}
.btn-xs {
  border-radius: 0.5rem;
  font-size: .65rem;
  padding: 0.2rem 1rem;
  margin-left: 0;
}
.text-xl {
  font-size: x-large;
}
.text-xxl {
  font-size: xx-large;
}
.text-g-light {
  color: #c1c1c1 !important;
}
/*alert box*/
#alert-box {
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  bottom: 0em;
  z-index: 10;
}

#modal-alert-box {
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  bottom: 0em;
  z-index: 10;
}

/* Users */
.img-logo-card {
	height: auto;
}
.img-logo-card img {
	width: 10rem;
}

.user-list-img{
	width: 2rem;
}

.crm-message-error{
  display: none;
  font-weight: 10;
  font-style: italic;
  color: red;
  font-size: smaller;
}

img.user-list-img {
    border-radius: 50%; /* Use 50% to create a perfect circle */
    background-color: #3498db; /* Set a background color */
}

/*switch Design Css*/

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin: 0;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%;
}

.toggle-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  text-wrap: nowrap;
  width: 40px;
}

input:checked + .slider {
  background-color: #4caf50;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.status-align{
	top: 30px;
	right: 40px;
}

ul.users {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0 1.5em 0 0;
}
ul.users li {
  margin-right: -14px;
}
ul.users li img {
  height: 30px;
  width: 30px;
/*  border-radius: 36px;*/
/*  border: 2px solid #fff;*/
}
.trust-profile-content .scheme-select {

}
.trust-profile-content .scheme-select:hover .card {
  background-color: whitesmoke;
  border: 1px solid #dcdcdc;
}
.select2 {
  margin: 0;
}
.select2 ul{
  width: 30vw !important;
}

form.compliance-ui-form .form-control {
  border-radius: 10px;
    background: whitesmoke;
    color: black;
}
form.compliance-ui-form span.select2-selection {
  background: whitesmoke;
    min-height: 56px;
    border-radius: 10px;
}
form.compliance-ui-form span.select2-selection ul {
  margin-top: 10px;
}
form.compliance-ui-form span.select2-selection ul li {}

.btn-complaince{
  border: aliceblue;
  background: whitesmoke;  
}

.btn-complaince:hover{
  background: #e6e5e5;  
}

/* Disabled INPUTS */
input[type="text"][disabled],input[type="text"][readonly] {
  color: grey;
  cursor: not-allowed; /* Change to your desired cursor style */
}

input[type="number"][disabled],input[type="number"][readonly] {
  color: grey;
  cursor: not-allowed; /* Change to your desired cursor style */
}

input[type="date"][disabled],input[type="date"][readonly] {
  color: grey;
  cursor: not-allowed; /* Change to your desired cursor style */
}

input[type="datetime"][disabled],input[type="datetime"][readonly] {
  color: grey;
  cursor: not-allowed; /* Change to your desired cursor style */
}

input[type="email"][disabled],input[type="email"][readonly] {
  color: grey;
  cursor: not-allowed; /* Change to your desired cursor style */
}

input[type="password"][disabled],input[type="password"][readonly] {
  color: grey;
  cursor: not-allowed; /* Change to your desired cursor style */
}

/*  Table Design */
.pane {
  background: #eee;
}
.pane-hScroll {
  overflow: auto;
  width: 100%;
}
.pane-vScroll {
  overflow-y: auto;
  overflow-x: hidden;
  height: 400px;
}

.pane-documents-hScroll {
  overflow: auto;
  width: 100%;
}
.pane-documents-vScroll {
  overflow-y: auto;
  overflow-x: hidden;
  height: 400px;
}

.pane-edit-documents-hScroll {
  overflow: auto;
  width: 100%;
}
.pane-edit-documents-vScroll {
  overflow-y: auto;
  overflow-x: hidden;
  height: 400px;
}

.report-table-head{
    margin: 0;
    height: 2em !important;
    background: #a9a9a9ab !important;
    line-height: 2em !important;    
}

.report-table {
    border-collapse: collapse;
    background: white;
    table-layout: fixed;
    width: 100%;
}
.report-table th{
    padding: 8px 16px;
    border: 1px solid #ddd;
    width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font: 12px/1 Arial, sans-serif;
    font-weight:bold;
}

.report-table td {
    padding: 8px 16px;
    border: 1px solid #ddd;
    width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font: 12px/1 Arial, sans-serif;
}

.doc-file-cs{
    cursor: pointer;
}

#view-only-document-modal .modal-dialog button.close{
    color: white;
    opacity: 1;
    font-size: 2em;
    position: absolute;
    right: -30px;
    cursor: pointer;
}
#view-only-document-modal .modal-content {
  background: none;
  border: none;
}

#view-only-document-modal .modal-body {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
#view-only-document-modal .modal-body iframe {
  width: 100%;
  height: 750px;
  border: 0;
}
#view-only-document-modal .modal-body img {
  width: 100%;
}
#view-only-document-modal .modal-body p.file_name{
  position: absolute;
  bottom: 0;
  font-weight: bold;
}

.dis-figure{
  font-size: x-small;
  font-style: italic;
  font-weight: bold;
  color: #cb0c9f;
}

.dis-figure .point-red{
  color: red;  
}



