@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

.ui.padded.table th.sorting, .ui.padded.table th.sorting_asc, .ui.padded.table th.sorting_desc{ cursor: pointer; }
.ui.padded.table th.sorting_asc::after{ content: "\f309";
    font-family: Icons;
    margin-left: 10px;
    color: #999; }
.ui.padded.table th.sorting_desc::after{ content: "\f30c";
        font-family: Icons;
        margin-left: 10px;
        color: #999; }
.ycNotNumeric{ border: 1px solid red !important;}

/* Remove spinner buttons for Chrome, Edge, and Safari */
.ui.input input[type="number"]::-webkit-inner-spin-button,
.ui.input input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Remove spinner buttons for Firefox */
.ui.input input[type="number"] {
    -moz-appearance: textfield;
}

.ycTherapistAppCtl{ display: none; }
.ycTherapistAppCtl.ycActivate{ display: block; }
.yc-dash-container table td, .yc-dash-container table th{
    border: 0px none;
}
.yc-dash-container{
    background-color: #000;

}

.yc-loader{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
}

.ycSidebar *{
    margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.ycSidebar{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 280px;
    background: #11101d;
    z-index: 100;
    transition: all 0.5s ease;
  }
  .ycSidebar.close{
    width: 78px;
  }
  .ycSidebar .logo-details{
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
  }
  .ycSidebar .logo-details i{
    font-size: 30px;
    color: #fff;
    height: 50px;
    min-width: 78px;
    text-align: center;
    line-height: 50px;
  }
  .ycSidebar .logo-details .logo_name{
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    transition: 0.3s ease;
    transition-delay: 0.1s;
    white-space: nowrap;
  }
  .ycSidebar.close .logo-details .logo_name{
    transition-delay: 0s;
    opacity: 0;
    pointer-events: none;
  }
  .ycSidebar .nav-links{
    height: 100%;
    padding: 30px 0 150px 0;
    overflow: auto;
  }
  .ycSidebar.close .nav-links{
    overflow: visible;
  }
  .ycSidebar .nav-links::-webkit-scrollbar{
    display: none;
  }
  .ycSidebar .nav-links li{
    position: relative;
    list-style: none;
    transition: all 0.4s ease;
  }
  .ycSidebar .nav-links li:hover{
    background: #1d1b31;
  }
  .ycSidebar .nav-links li .iocn-link{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .ycSidebar.close .nav-links li .iocn-link{
    display: block
  }
  .ycSidebar .nav-links li i{
    height: 50px;
    min-width: 78px;
    text-align: center;
    line-height: 50px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .ycSidebar .nav-links li.showMenu i.arrow{
    transform: rotate(-180deg);
  }
  .ycSidebar.close .nav-links i.arrow{
    display: none;
  }
  .ycSidebar .nav-links li a{
    display: flex;
    align-items: center;
    text-decoration: none;
  }
  .ycSidebar .nav-links li a .link_name{
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    transition: all 0.4s ease;
    white-space: nowrap;
  }
  .ycSidebar.close .nav-links li a .link_name{
    opacity: 0;
    pointer-events: none;
  }
  .ycSidebar .nav-links li .sub-menu{
    padding: 6px 6px 14px 80px;
    margin-top: -10px;
    background: #1d1b31;
    display: none;
  }
  .ycSidebar .nav-links li.showMenu .sub-menu{
    display: block;
  }
  .ycSidebar .nav-links li .sub-menu a{
    color: #fff;
    font-size: 15px;
    padding: 5px 0;
    white-space: nowrap;
    opacity: 0.6;
    transition: all 0.3s ease;
  }
  .ycSidebar .nav-links li .sub-menu a:hover{
    opacity: 1;
  }
  .ycSidebar.close .nav-links li .sub-menu{
    position: absolute;
    left: 100%;
    top: -10px;
    margin-top: 0;
    padding: 10px 20px;
    border-radius: 0 6px 6px 0;
    opacity: 0;
    display: block;
    pointer-events: none;
    transition: 0s;
  }
  .ycSidebar.close .nav-links li:hover .sub-menu{
    top: 0;
    opacity: 1;
    pointer-events: auto;
    transition: all 0.4s ease;
  }
  .ycSidebar .nav-links li .sub-menu .link_name{
    display: none;
  }
  .ycSidebar.close .nav-links li .sub-menu .link_name{
    font-size: 18px;
    opacity: 1;
    display: block;
  }
  .ycSidebar .nav-links li .sub-menu.blank{
    opacity: 1;
    pointer-events: auto;
    padding: 3px 20px 6px 16px;
    opacity: 0;
    pointer-events: none;
  }
  .ycSidebar .nav-links li:hover .sub-menu.blank{
    top: 50%;
    transform: translateY(-50%);
  }
  .ycSidebar .profile-details{
    position: fixed;
    bottom: 0;
    width: 280px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1d1b31;
    padding: 12px 0;
    transition: all 0.5s ease;
  }
  .ycSidebar.close .profile-details{
    background: none;
  }
  .ycSidebar.close .profile-details{
    width: 78px;
  }
  .ycSidebar .profile-details .profile-content{
    display: flex;
    align-items: center;
  }
  .ycSidebar .profile-details img{
    height: 52px;
    width: 52px;
    object-fit: cover;
    border-radius: 16px;
    margin: 0 14px 0 12px;
    background: #1d1b31;
    transition: all 0.5s ease;
  }
  .ycSidebar.close .profile-details img{
    padding: 10px;
  }
  .ycSidebar .profile-details .profile_name,
  .ycSidebar .profile-details .job{
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
  }
  .ycSidebar.close .profile-details i,
  .ycSidebar.close .profile-details .profile_name,
  .ycSidebar.close .profile-details .job{
    display: none;
  }
  .ycSidebar .profile-details .job{
    font-size: 12px;
  }
  .yc-dashboard-section{
    position: relative;
    background: #E4E9F7;
    height: 100vh;
    left: 280px;
    width: calc(100% - 280px);
    transition: all 0.5s ease;
    padding: 0px;
  }
  .ycSidebar.close ~ .yc-dashboard-section{
    left: 78px;
    width: calc(100% - 78px);
  }
  .dashboard-content{
    /*display: flex;
    align-items: center;
    flex-wrap: wrap;*/
  }
  .yc-dashboard-section .dashboard-content .bx-menu,
  .yc-dashboard-section .dashboard-content .text{
    color: #11101d;
    font-size: 35px;
  }
  .yc-dashboard-section .dashboard-content .bx-menu{
    cursor: pointer;
    margin-right: 10px;
  }
  .yc-dashboard-section .dashboard-content .text{
    font-size: 26px;
    font-weight: 600;
  }
  
  .dashboard-content #page{
    height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  }
  .dashboard-content #page #content{
    flex-grow: 1;
    padding: 1rem;
    overflow-y: auto;
  }
  .ycSidebar .profile-details .profile_name, .ycSidebar .profile-details .job{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 130px;
  }
  @media screen and (max-width: 400px){
    .ycSidebar{
      width: 240px;
    }
    .ycSidebar.close{
      width: 78px;
    }
    .ycSidebar .profile-details{
      width: 240px;
    }
    .ycSidebar.close .profile-details{
      background: none;
    }
    .ycSidebar.close .profile-details{
      width: 78px;
    }
    .yc-dashboard-section{
      left: 240px;
      width: calc(100% - 240px);
    }
    .ycSidebar.close ~ .yc-dashboard-section{
      left: 78px;
      width: calc(100% - 78px);
    }
  }




  .ng-confirm-scrollpane {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ng-bs3-container.container {
    max-width: 500px;
    width: 100%;
}

.ng-confirm.ng-confirm-light .ng-confirm-bg,
.ng-confirm.ng-confirm-white .ng-confirm-bg {
    opacity: 0.8;
}

.ycDashboardAppCtl .ui.padded.table td, .ycDashboardAppCtl .ui.padded.table th{ border: none; }

.um-account-name .um-account-profile-link{ display: none; }

table.yc-table td, table.yc-table th{ border: none; }
.ycAgencyRateInput{ max-width: 80px; }