@import url('../lib.css');

* {
    margin: 0px;
    padding: 0px;
    font-family: 'Roboto Flex Variable', 'Roboto', sans-serif;
}

/*
  Style for : top_bar : Top panel where we can see the logo and alerts
*/


/* #region Topbar  */
.cblTopBar {
  background: var(--cw-color-layout-navbar, #368ee0);
  color: var(--cw-color-on-layout-navbar, #FFF);
  height: 58px;
  width: 100%;
  height: 58px;
  position: fixed;
  top: 0;
  flex-shrink: 0;
  z-index: 1200;
}

.cblBtn_menuSidebarContent {
  margin-left: 18em;
}

.cblBtn_menuSidebarContent_active {
  margin-left: 0em;
}

.cblBtn_menuSidebar {
    width: 44px;
    height: 34px;
    flex-shrink: 0;
    color: var(--cw-color-on-layout-sidebar, #FFF);
    font-size: 24px;
    margin-left: 12px;
    margin-right: 12px;
    border: solid 0em transparent;
    outline: none;
    cursor: pointer;
}

    .cblBtn_menuSidebar::before {
        
        font-family: "NewCwIcons" !important;
        content: "\ea19";
    }

.cblBreadCrumb {
  width: fit-content;
  height: 100%;
}

    .cblBreadCrumb * {

        color: var(--cw-color-on-layout-navbar, #FFF);
        font-family: 'Roboto Flex Variable', 'Roboto', sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: -0.05px;
        padding: 6px;
        cursor: default;
    }

/* Print span in brower using control in aspx [ CBLBreadCrumb - Master page ( Do not have span inside control ref BreadCrumb.acsx ) ] */
.cblBreadCrumb span:nth-child(2) {
  font-size: 0em;
}

.cblBreadCrumb span div#ctl03_P_BreadCrumb {
  display: flex;
  justify-content: center;
  align-items: center;
}

    .cblBreadCrumb span:nth-child(2)::before {
        font-family: 'NewCwIcons' !important;
        content: "\ea03";
        font-size: 20px;
    }


.cblAlertTag {
  margin-right: 1em;
}

.cblAlertContent {
  width: 44px;
  height: 34px;
}

.cblAlertContent * {
  transition: all .2s ease-in-out;
}

.cblAlertContent .fas {
  display: none;
}

.cblAlertContent .cbl_nav_link {
  display: flex;
  color: var(--cw-color-on-layout-navbar, #fff);
  position: relative;
  text-decoration: none;
}

    .cblAlertContent .cbl_nav_link::before {
        font-size: 24px;
        font-family: "NewCwIcons";
    }


/* #region Reminders */
#P_TasksReminder .cbl_nav_link::before {
    content: "\ea16";
}

#P_TasksMessages .cbl_nav_link::before {
    content: "\ea25";
}

#P_TasksToDo .cbl_nav_link::before {
    content: "\ea2f";
}

#P_TasksInfo .cbl_nav_link::before {
    content: "\ea23";
}

#P_TasksWarning .cbl_nav_link::before {
    content: "\ea09";
}

#P_TasksAlerts .cbl_nav_link::before {
    content: "\ea1c";
}

.cblAlertContent .cbl_nav_link .cbl_numb_icon {
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Roboto Flex Variable', 'Roboto', sans-serif;
    font-size: .65em;
    background: #368ee0;
    position: absolute;
    top: -5px;
    left: 17px;
    line-height: normal;
    border-radius: 100%;
    -moz-border-radius: 100%;
    border: solid 1px #ffff;
}

/* Background of notifications  */
#P_TasksReminder .cbl_nav_link .cbl_numb_icon {
  background: #ABD4EE;
  color: #0d47a1;
}

/* Messages */
#P_TasksMessages .cbl_nav_link .cbl_numb_icon {
  background: #ABD4EE;
  color: #0d47a1;
}

/* Tasks to do */
#P_TasksToDo .cbl_nav_link .cbl_numb_icon {
  background: #ABD4EE;
  color: #0d47a1;
}

/* information */
#P_TasksInfo .cbl_nav_link .cbl_numb_icon {
  background: #FFC47A;
  color: #0d47a1;

}

/* Warning*/
#P_TasksWarning .cbl_nav_link .cbl_numb_icon {
  background: #FF8036;
  color: #0d47a1;
}

/* Alerts */
#P_TasksAlerts .cbl_nav_link .cbl_numb_icon {
  background: #DD1111;
  color: #0d47a1;

}


/* #endregion */

/* #endregion */