/* Helper css */


html {
    font-size: 16px;
  }

body {
    overflow: auto !important;
}


.d-flex {
    display: flex !important;
}
.d-item-center {
    align-items: center !important;
}
.d-justify-center {
    justify-content: center !important;
}
.d-space-betn {
    justify-content: space-between !important;
}

/* Width */

.w-full {
    width: 100% !important;
}

/* Margin */
.ml-10 {
    margin-left: 10px !important;
}

/* Size */
.size-12 {
    font-size: 12px !important;
}
.size-14 {
    font-size: 14px !important;
}
.size-17 {
    font-size: 17px !important;
}
.size-18 {
    font-size: 18px !important;
}

/*Color*/
.color-lightblue {
    color: #2F929F !important;
}
.color-secondary {
    color: #7B809A !important;
}

/*Float*/
.float-right {
    float: right !important;
}

/*Background*/
.bg-primary {
    background: #2F929F !important;
}
.bg-white {
    background: white !important;
}
.bg-gray {
    background-color: lightgray !important;
    filter: 'blur(10px)';
    opacity: 0.8;
}

/* Table */

tr {
    font-size: 14px;
}
td {
    color: #7b809a;
    padding: 5px 25px;
}
.root-layout {
    padding-left: 0px !important;
    padding-right: 5px !important;
    padding-bottom: 0px !important;
    padding-top: 17px !important;
}

.underline-input {
    padding-bottom: 2px;
    transition: border-color 0.3s ease;
}

.underline-input:hover {
    border-bottom: 1px solid #000;
}


/* Custom overrides */
.alternate-color-table tbody tr:nth-child(even) {
    background-color: #f2feff;;
}
.alternate-color-table tbody tr:hover {
    background-color: #e3f3f5;
}
.material-icons-round.application-export {
    font-size: 18px !important;
}
.pipeline-column {
    background: #f0f3f9;
    margin: 3px;
    border-radius: 7px;
    padding:10px;
    min-width: 300px;
}

.pipeline-column-declined {
    background:  rgba(244, 67, 52, 0.2);
}
.pipeline-content {
    max-height: calc(100vh - 230px);
    overflow-y: scroll;
}
.pipeline-column-header {
    font-size: 14px;
    color: #344767;
    font-weight: bold;
    margin-bottom: 15px;
}
.pipeline-item {
    background: white;
}
.pipeline-item:hover {
    background: #CBE4E7;
}
.pipeline-item:active {
    background: #CBE4E7; 
}

.pipeline-item-id {
    font-size: 14px;
    color: white;
}

.profile-card-tinfo {
    margin-left: 160px;
    padding-top: 50px;
    font-size: 24px;
    font-weight: 300;
    color: white;
}
.profile-card-binfo {
    width: 100%;
    height: 100%;
    padding-top: 4px;
    margin-left: 160px;
}
.tenant-collapse {
    border-top: 1px solid lightgrey;
    background: white;
    padding: 5px 10px;
}
.nav-tenant-item {
    font-size: 15px;
    cursor: pointer;
    border-bottom: 1px solid lightgray;
    margin-bottom: 10px;
}

 /* custom scrollbar */
 .pipeline-content::-webkit-scrollbar {
    width: 18px;
  }
  
  .pipeline-content::-webkit-scrollbar-track {
    background-color: transparent;
  }
  
  .pipeline-content::-webkit-scrollbar-thumb {
    background-color: #d6dee1;
    border-radius: 20px;
    border: 6px solid transparent;
    background-clip: content-box;
  }
  
  .pipeline-content::-webkit-scrollbar-thumb:hover {
    background-color: #a8bbbf;
  }
  
@media (min-width: 1200px) {
    .MuiDrawer-paper {
        margin-left: 5px !important;
        width: 262px !important;
    }
}


