body {
    margin: 0;
    font-family: Inter, Arial, Helvetica, sans-serif !important;
    font-size: 16px;
    word-break: break-word;
}

/* color*/
.primary-text-color {
    color: var(--primary-color) !important;
}
.primary-bg-color {
    background-color: var(--primary-color) !important;
}

.secondary-text-color {
    color: var(--secondary-color) !important;
}
.secondary-bg-color {
    background-color: var(--secondary-color) !important;
}

.tertiary-text-color {
    color: var(--tertiary-color) !important;
}
.tertiary-bg-color {
    background-color: var(--tertiary-color) !important;
}

.danger-text-color {
    color: var(--danger-color) !important;
}

.danger-bg-color {
    color: var(--danger-color) !important;
}

.main-background-color {
    background-color: var(--gh-background-color) !important;
}

.schedule-date-bg-color {
    background-color: var(--schedule-date-color) !important;
}
.schedule-action-text-color {
    color: var(--schedule-action-text-color) !important;
}

.timesheet-summary-color {
    background-color: var(--timesheet-summary-color) !important;
}

.action-btn-bg-color {
    background-color: var(--action-btn-bg-color) !important;
}

.action-btn-text-color {
    color: var(--schedule-action-text-color) !important;
}

.table-item-selector-color {
    color: var(--table-item-selector-color) !important;
}

.theme-bg-color {
    background-color: var(--theme-color) !important;
}

.holiday-bg-color {
    background-color: #0060CA;
}

.status-waiting-for-approval-bg-color {
    background-color: var(--status-waiting-for-approval) !important;
}

.status-approved-bg-color {
    background-color: var(--status-approved) !important;
}

.status-not-submitted-bg-color {
    background-color: var(--status-not-submitted) !important;
}

.status-rejected-bg-color {
    background-color: var(--status-rejected) !important;
}

.clock-in-color {
    background-color: var(--gh-clock-in-color) !important;
}

.break-color {
    background-color: var(--gh-break-color) !important;
}

.clock-out-color {
    background-color: var(--gh-clock-out-color) !important;
}

/* color */

body {
    margin: 0;
    font-family: Inter, Arial, Helvetica, sans-serif !important;
    font-size: 16px;
    word-break: break-word;
}

/*page*/
.mobile-page {
    width: 100vw;
    height: 100vh;
    position: absolute;  /*because we animate the motion of page by change the value of left, in order left property to take effect, position has to be relative or absolute,*/
    /*absolute makes the animation more smoothly*/
    top: 0;
    left: 0;
    padding: 0;
    display: none;
    pointer-events: none;
    scroll-behavior: smooth;
    background-color: var(--gh-background-color);
    -webkit-overflow-scrolling : touch; /* make content inside overflow container scroll smoothly*/

}
.login-page {
    width: 100vw;
    height: 100vh;
    position: absolute;  /*because we animate the motion of page by change the value of left, in order left property to take effect, position has to be relative or absolute,*/
    /*absolute makes the animation more smoothly*/
    top: 0;
    left: 0;
    padding: 0;
    display: none;
    scroll-behavior: smooth;
    background-color: var(--gh-background-color);
    -webkit-overflow-scrolling : touch; /* make content inside overflow container scroll smoothly*/
}

.mobile-page input[type=date], input[type=datetime-local], input[type=month], input[type=time] {
    -webkit-appearance:listbox
}

.mobile-back-header {
    box-sizing: border-box;
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    margin: 0;
    color: white;
    background-color: var(--gh-bar-color);
}

.mobile-back-right-header-item {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.mobile-page-header {
    box-sizing: border-box;
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    text-align: center;
    margin: 0;
    color: white;
    background-color: var(--gh-bar-color);
}

.mobile-page-header .title {
    font-weight: 800;
}

/**/

.letter-spacing-sm {
    letter-spacing: 1px;
}

.header-right-button {
    margin-left: -20px;
}

.page-body {
    width: 100%;
    height: calc(100vh - 45px);
    color: #2a2f46;
}

.gone {
    display: none !important;
}



.minimized-item {
    width: 0;
    height:0;
    font-size: 0;
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    border: 0 !important;
}

.row-opacity-item {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100vw;
    height: 100%;
}

.row-opacity-item-android {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    height: 100%;
}

.hide-item {
    width: 0;
    height:0;
    font-size: 0;
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
}


.mobile-page-body {
    height: calc(100vh - 45px); /*parent of scroll section must have a specified height, so that the flex 1 can take up the rest height*/
    display: flex;
    flex-direction: column;
}

.fixed-section {
    width: 100%;
    height:auto;
}

.scrollable-section {
    height: auto;
    width:100%;
    overflow-y: auto;
    overflow-x: auto;
    flex: 1;
}

/*sometimes the content in the area is too long, which will cause the the div shift*/
/*bug hidden will cause content invisible*/
.scrollable-wrapper {
    position: relative;
    overflow: auto;
    padding-bottom: 100px;
}

.shown {
    display: block !important;
    pointer-events: auto !important;
    z-index: 200;
}

.btn-outline-clock-in {
    border-color: var(--gh-clock-in-color) !important;
}

.btn-outline-clock-in.active {
    background-color: var(--gh-clock-in-color) !important;
}

.btn-outline-break {
    border-color: var(--gh-break-color) !important;
}

.btn-outline-break.active {
    background-color: var(--gh-break-color) !important;
}

.btn-outline-clock-out {
    border-color: var(--gh-clock-out-color) !important;
}

.btn-outline-clock-out.active {

    background-color: var(--gh-clock-out-color) !important;
}

/*schedule*/

.round-plus-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    z-index: 1041;
    text-align: center;
    color:white;
    padding: 0.5rem 0;
    font-size: 1rem;
    font-weight: bold;
    margin: 1rem auto;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19)
}

.round-plus-btn-small-sample {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--plus-btn-bg-color);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    z-index: 1041;
    text-align: center;
    color:white;
    padding: 0.5rem 0;
    font-size: 0.5rem;
    font-weight: bold;
    margin: 1rem auto;
}


/*color set*/
.bg-desaturated-blue {
    background-color: var(--desaturated-blue);
}


/*color set*/

/*font*/
    /*size*/
.text-lg {
    font-size: 1.5rem;
}

.text-rg {
    font-size: 1rem;
}

.text-size-2 {
    font-size: 2rem !important;
}

.text-size-16 {
    font-size: 1.6rem !important;
}

.text-size-15 {
    font-size: 1.5rem !important;
}

.text-size-12 {
    font-size: 1.2rem !important;
}

.text-size-11 {
    font-size: 1.1rem !important;
}


.text-size-13 {
    font-size: 1.3rem !important;
}

.text-size-14 {
    font-size: 14px !important;
}

.text-size-08 {
    font-size: 0.8rem !important;
}

.text-size-09 {
    font-size: 0.8rem !important;
}

.text-size-07 {
    font-size: 0.7rem !important;
}

.text-size-06 {
    font-size: 0.6rem !important;
}

.text-size-05 {
    font-size: 0.5rem !important;
}

.text-size-1 {
    font-size: 1rem !important;
}
.text-size-08 {
    font-size: 0.8rem;
}

.text-size-09 {
    font-size: 0.9rem;
}

.text-size-lg {
    font-size: 1.5rem;
}

.text-size-rg {
    font-size: 1rem;
}

.text-size-sm {
    font-size: 0.8em;
}

.font-2 {
    font-size: 1.2em;
}

.font_sm {
    font-size: 0.8em;
}

.text-extra-sm{
    font-size: 0.8em;
}

.text-teal {
    color: #00AABF;
}

.text-white {
    color: white;
}

.text-gh-color {
    color: var(--gh-font-color);
}

.font-color-teal {
    color: #00AABF;
}

.font-color-black {
    color: black !important;
}




.font_rsp_lg {
    font-size: 6vw;
}

.font_rsp_rg {
    font-size: 3vw;
}

.arrow-size-rg {
    font-size: 5vw; /*for header goback button*/
}



    /*weight*/
.font-weight-100 {
    font-weight: 100 !important;
}

.font-weight-200 {
    font-weight: 200 !important;
}

.font-weight-300 {
    font-weight: 300 !important;
}

.font-weight-400 {
    font-weight: 400 !important;
}

.font-weight-500 {
    font-weight: 500 !important;
}

.font-weight-600 {
    font-weight: 600 !important;
}

.font-weight-700 {
    font-weight: 700 !important;
}

.font-weight-800 {
    font-weight: 800 !important;
}

.font-weight-900 {
    font-weight: 900 !important;
}

/*font size*/

.text-muted-gray {
    color: #797979;
}

/*font*/

/*background color*/

.bg-gray {
    background-color: #F3F5F7;
}

.bg-dark-gray {
    background-color: #EEEEEE;
}

/*border*/

.border-radius-6px {
    border-radius: 6px;
}

.rounded-30 {
    border-radius: 30px;
}

.rounded-20 {
    border-radius: 20px;
}

.rounded-15 {
    border-radius: 15px;
}

.rounded-10 {
    border-radius: 10px;
}


/*width and height*/
.parent-height {
    height: 100% !important;
}

.line-height-1 {
    line-height: 1;
}

/**padding*/
.pt-01 {
    padding-top: 0.1rem;
}

.pt-02 {
    padding-top: 0.2rem;
}

.pb-01 {
    padding-top: 0.1rem;
}

.pb-02 {
    padding-top: 0.2rem;
}

.py-08 {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
}

.text-capitalize {
    text-transform: capitalize;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-ellipsis {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: block;
}

.light-gray-background {
    background-color: var(--gh-gray);
}

.gray-background {
    background-color: var(--gh-gray);
}

.bg-teal {
    background-color: var(--gh-teal);
}

.bg-blue {
    background-color: #005DCD !important;
}

.teal_background {
    background-color: var(--gh-teal) !important;
}
.white-background {
    background-color: white;
}

.red-background {
    background-color: #EC262C;
}

.bg-red {
    background-color: #EC262C;
}

.font-color-red {
    color: #EC262C;
}

.font-color-gray {
    color: #B1B1B1;
}

.nowrap {
    white-space: nowrap;
}


.row-left-items {
    margin-right: 1rem;
}

.row-right-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.row-separate-line-indent {
    background-color: #e9e9e9;
    width: calc(100% - 1rem);
    height: 1px;
    margin-left: 10px;
    margin-right: 10px;
}

.row-separate-line-indent-no-margin {
    background-color: #e9e9e9;
    width: 100%;
    height: 1px;
}

.row-separate-line {
    background-color: #e9e9e9;
    width: 100%;
    height: 1px;
}

.row-short-line {
    background-color: #e9e9e9;
    width: 95%;
    height: 1px;
    margin-left: 10px;
    margin-right: 10px;
}

.row-separate-gap {
    width: 100%;
    height: 15px;
    background-color: var(--gh-background-color);
}

/*date slide*/

.date-slide {
    display: flex;
    justify-content: center;
    align-items: center;

}

.date-slide-text {
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    padding: 0;
}

.left-chevron {
    min-width: 44px;
    min-height: 44px;
    text-align: right;
    line-height: 44px;
}

.right-chevron {
    min-width: 44px;
    min-height: 44px;
    line-height: 44px;
    text-align: left;
}

.mobile-page input {
    transform: translateZ(0);
}

/*date slide*/

/*btn*/
.gh-full-width-btn {
    background-color: var(--action-btn-bg-color);
    border: none;
    text-align: center;
    color:white;
    width: 90%;
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 2rem;
    margin: 1rem auto;
    display: none;
}

.gh-half-width-btn {
    background-color: var(--action-btn-bg-color);
    border: none;
    text-align: center;
    color:white;
    width: 40%;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 2rem;
    margin: 1rem auto;
    display: none;
}

.gh-rounded-status-badge {
    border: none;
    text-align: center;
    color:black;
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
    border-radius: 2rem;
}

.gh-rounded-background {
    border-radius: 1rem;
    background-color: white;
    overflow: hidden;
}


/*flex*/

.flex-1 {
    flex: 1;
}

.gone {
    display: none !important;
}
.none {
    display: none;
}

.hidden {
    visibility: hidden;
}



/* start - GHTableTree */

.tree-table tr:active {
    background-color: #F4F4F4;
}

.tree-table tr:not(:last-child) {
    border-bottom: 1px solid #EEE;
}

.tree-table tr.hover, .tree-table tr.placeholder {
    background-color: yellow;
}

.tree-table tr.placeholder {
    opacity: 0.5;
}

.tree-table tr.dragged, .tree-table tr.notdoroppable {
    opacity: 0.3
}

tr[has-child="1"] > td:first-child > i {
    padding-right: 5px;
    cursor: pointer;
}

.org-table tr {
    border-bottom: none;
}

.tree-table tr.closed[has-child="1"] > td:first-child > i {
    transform: rotate(-90deg);
    padding-bottom: 5px;
    vertical-align: top;
}

.tree-table tr.row.col-12 {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

.tree-table tr[level="1"] > td:first-child {
    padding-left: 45px;
}

.tree-table tr[level="1"][has-child="1"] > td:first-child {
    padding-left: 30px;
}

.tree-table tr[level="2"] > td:first-child {
    padding-left: 75px;
}

.tree-table tr[level="2"][has-child="1"] > td:first-child {
    padding-left: 60px;
}

.tree-table tr[level="3"] > td:first-child {
    padding-left: 105px;
}

.tree-table tr[level="3"][has-child="1"] > td:first-child {
    padding-left: 90px;
}

.tree-table tr[level="4"] > td:first-child {
    padding-left: 135px;
}

.tree-table tr[level="4"][has-child="1"] > td:first-child {
    padding-left: 120px;
}

.tree-table tr[level="5"] > td:first-child {
    padding-left: 165px;
}

.tree-table tr[level="5"][has-child="1"] > td:first-child {
    padding-left: 150px;
}

.tree-table tr[level="6"] > td:first-child {
    padding-left: 195px;
}

.tree-table tr[level="6"][has-child="1"] > td:first-child {
    padding-left: 180px;
}

.tree-table tr[level="7"] > td:first-child {
    padding-left: 225px;
}

.tree-table tr[level="7"][has-child="1"] > td:first-child {
    padding-left: 210px;
}

.tree-table tr[level="8"] > td:first-child {
    padding-left: 255px;
}

.tree-table tr[level="8"][has-child="1"] > td:first-child {
    padding-left: 240px;
}
/* end - GHTableTree */

.active-tab {
    background-color: var(--action-btn-bg-color);
    color: white;
}

/*mobile header*/
.mobile-page-header {
    position: relative;
    white-space: nowrap;
}

.left-header-item {
    position: absolute;
    padding-left: 20px;
    min-width: 40px;
    /*padding-right: 15px;*/
}

.rounded-left-header-item {
    margin-left: 15px;
    display: flex; 
    color: black; 
    justify-content: center;
    border-radius: 2rem; 
    background: white; 
    align-items: center;
    min-width: 40px; 
    min-height: 40px;
}

.middle-header-item {
    font-weight: 700;
    margin-left: 60px;
    text-transform: capitalize;
    max-width: 60%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.right-header-item {
    position: absolute;
    right:12px;
    min-width: 40px;
}

.rounded-right-header-item {
    min-width: 40px; 
    min-height: 40px; 
    display: flex; 
    color: black; 
    justify-content: center;
    border-radius: 2rem; 
    background: white; 
    align-items: center;
}

.mini-touch-width {
    min-width: 40px;
    min-height: 40px;
    line-height: 40px;
}

.read-only {
    pointer-events: none !important;
    background-color: #f8f8f8 !important;
    opacity: 0.5;
}

.read-only-no-background {
    pointer-events: none !important;
    opacity: 0.5;
}

.read-only-no-bg-no-opacity {
    pointer-events: none !important;
}

.full-width {
    width: 100vw !important;
}




/*repeat on*/
.circle-button-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid white;
}

.circle-button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    background-color: rgb(244, 246, 249);
    color: rgb(121, 121, 121);
    border:none;
}

.circle-button.active {
    color: #fff;
    background-color: var(--action-btn-bg-color) !important;
}

.dashboard-card-action-text-color {
    color: var(--dashboard-card-action-text-color) !important;
}

.dashboard-chat-icon-color {
    color: var(--dashboard-chat-icon-color) !important;
}
.dashboard-map-bg-color {
    background-color: var(--dashboard-map-icon-color) !important;
}

.btn-outline-primary:hover {
    color: rgb(121, 121, 121);
    background-color: rgb(244, 246, 249);
    border: none;
}

.btn.disabled, .btn:disabled {
    opacity: 1;
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
    color: rgb(121,121,121);
    background-color: rgb(244, 246, 249);
    border: none;
}

.btn-outline-primary.active.disabled, .btn-outline-primary.active:disabled {
    color: #fff;
}


/*repeat on*/
.rotated {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


.long-value-input {
    width: 200px;
    height: 30px;
    padding: 0 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}


/* gh chat starts */

#ghChatMainButton {
    font-size: 16px;
}

#ghChatMainButton:hover {
    color: #0D81FF;
}

#ghChatSideContainer {
    background-color: white;
}

#ghChatSideContainer .avatar-placeholder {
    height: 50px;
    width: 50px;
    text-transform: uppercase;
}

#ghChatSideMenuCloseButton {
    font-size: 120%;
}

.chat-contact-list-item {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    border-bottom: 1px solid var(--gh-grey);
    transition: background-color 0.2s;
}

.chat-contact-list-item:hover {
    background-color: var(--gh-gray);
}

.chat-contact-list-item:last-child {
    border-bottom: unset;
}

.chat-page {
    display: none;
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    min-height: 100%;
    padding: 1rem;
    width: 100%;
}

.chat-page.shown {
    display: block !important;
    pointer-events: all;
}

.chat-message-item {
    margin: 0 1rem;
    padding: 1rem;
}

.chat-message-item .message-container {
    max-width: 100%;
}

.chat-message-item .message-content {
    padding: 0.35rem 1rem;
    border: 1px solid rgb(211, 219, 227);
    background-color: rgb(211, 219, 227);
    border-radius: 0.5rem;
    word-wrap: break-word;
}

.chat-message-item.justify-content-start .message-content {
    padding: 0.35rem 1rem;
    border: 1px solid #FFFFFF;
    background-color: #FFFFFF;
    border-radius: 0.5rem;
    word-wrap: break-word;
}

.chat-message-item .message-time {
    font-size: 80%;
    color: #999;
}

#ghChatMessageContainer {
}

.select2-container--gh-chat-contact-create .select2-selection--multiple .select2-selection__rendered {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0 5px;
    width: 100%;
}

.select2-container--gh-chat-contact-create .select2-search--inline .select2-search__field {
    background: transparent;
    border: none;
    outline: 0;
    box-shadow: none;
    -webkit-appearance: textfield;
}

.select2-container--gh-chat-contact-create .select2-selection--multiple{
    background-color:white;
    border-radius:4px;
    cursor:text
}
.select2-container--gh-chat-contact-create .select2-selection--multiple .select2-selection__rendered{
    box-sizing:border-box;
    list-style:none;
    margin:0;
    padding:0 5px;
    width:100%
}
.select2-container--gh-chat-contact-create .select2-selection--multiple .select2-selection__rendered li{
    list-style:none
}
.select2-container--gh-chat-contact-create .select2-selection--multiple .select2-selection__placeholder{
    color:#999;
    margin-top:5px;
    float:left
}
.select2-container--gh-chat-contact-create .select2-selection--multiple .select2-selection__clear{
    cursor:pointer !important;
    float:right !important;
    font-weight:700 !important;
    margin-top:5px !important;
    margin-right:10px !important;
}
.select2-container--gh-chat-contact-create .select2-selection--multiple .select2-selection__choice{
    background-color: white !important;
    font-size: 80%;
    color: black !important;
    border:1px solid var(--gh-gray) !important;
    border-radius:4px !important;
    cursor:default !important;
    /*float:left !important;*/
    margin-right:5px !important;
    margin-top:5px !important;
    padding:0 5px !important;
}
.select2-container--gh-chat-contact-create .select2-selection--multiple .select2-selection__choice__remove{
    color:#999 !important;
    cursor:pointer !important;
    display:inline-block !important;
    font-weight:700 !important;
    margin-right:2px !important;
}
.select2-container--gh-chat-contact-create .select2-selection--multiple .select2-selection__choice__remove:hover{
    color:#333
}
.select2-container--gh-chat-contact-create[dir="rtl"] .select2-selection--multiple .select2-selection__choice,.select2-container--gh-chat-contact-create[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder,.select2-container--gh-chat-contact-create[dir="rtl"] .select2-selection--multiple .select2-search--inline{
    float:right
}
.select2-container--gh-chat-contact-create[dir="rtl"] .select2-selection--multiple .select2-selection__choice{
    margin-left:5px;
    margin-right:auto
}
.select2-container--gh-chat-contact-create[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{
    margin-left:2px;
    margin-right:auto
}

.select2-container--gh-chat-contact-create .select2-results__option {
    transition: background-color 0.2s;
}

.select2-container--gh-chat-contact-create .select2-results__option:not(:last-child) {
    border-bottom: 1px solid var(--gh-gray);
}

.select2-container--gh-chat-contact-create .select2-results__option[role=group]{
    padding:0
}
.select2-container--gh-chat-contact-create .select2-results__option[aria-disabled=true]{
    color:#999
}

.select2-container--gh-chat-contact-create .select2-results__option[aria-selected=true] .selected-indicator {
    display: block !important;
}

.select2-container--gh-chat-contact-create .select2-results__option .select2-results__option{
    overflow-x: hidden;
    word-break: break-all;
    padding-left:1em
}
.select2-container--gh-chat-contact-create .select2-results__option .select2-results__option .select2-results__group{
    padding-left:0
}
.select2-container--gh-chat-contact-create .select2-results__option .select2-results__option .select2-results__option{
    margin-left:-1em;
    padding-left:2em
}
.select2-container--gh-chat-contact-create .select2-results__option .select2-results__option .select2-results__option .select2-results__option{
    margin-left:-2em;
    padding-left:3em
}
.select2-container--gh-chat-contact-create .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{
    margin-left:-3em;
    padding-left:4em
}
.select2-container--gh-chat-contact-create .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{
    margin-left:-4em;
    padding-left:5em
}
.select2-container--gh-chat-contact-create .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{
    margin-left:-5em;
    padding-left:6em
}
.select2-container--gh-chat-contact-create .select2-results__option--highlighted{
    background-color: var(--gh-gray);
}
.select2-container--gh-chat-contact-create .select2-results__group{
    cursor:default;
    display:block;
    padding:6px
}

.select2-container--gh-chat-contact-create.select2-container--open {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
}

.select2-container--gh-chat-contact-create .select2-dropdown.select2-dropdown--below {
    overflow-y: auto;
    position: relative !important;
}

.select2-container--gh-chat-contact-create.select2-container--open .select2-dropdown.select2-dropdown--below {
    width: 100% !important;
    border-radius: 0;
    border: 1px solid var(--gh-gray);
    border-left: unset;
    border-right: unset;
}

.new-contact-search-dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-count-container {
    position: absolute;
    background-color: var(--gh-chat-icon);
    height: 18px;
    width: 18px;
    border-radius: 50%;
    display: flex;
    font-size: 8px;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    top: -5px;
    right: 3px;
}

.unread-message-count-container {
    background-color: #DA291C;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    display: flex;
    font-size: 12px;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
}

@keyframes gh-status-spinner {
    to {transform: rotate(360deg);}
}

.gh-status-spinner:before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 35%;
    right: 65%;
    width: 14px;
    height: 14px;
    margin-top: -15px;
    margin-right: -15px;
    border-radius: 50%;
    border: 2px solid #ccc;
    border-top-color: var(--primary-color);
    animation: gh-status-spinner .6s linear infinite;
}

input.gh-chat-file-upload {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    outline: 0;
    opacity: 0;
    position: absolute;
    z-index: 2;
}

#ghChatEditForm .file-drag-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    z-index: 3;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: #eee;
    user-select: none;
    pointer-events: none;
}

.is-dragover .file-drag-overlay {
    display: flex !important;
}

.two-chars{
    width: 3ch;
    font-size: 16px;
    overflow: hidden;
    white-space: nowrap;
}

/* gh chat ends */


/*flex*/
.no-shrink {
    flex-shrink: 0;
}


.float-switch-view-btn {
    position: absolute;
    bottom: 50px;
    width: 200px;
    border-radius: 1rem;
    left: calc(50vw - 100px);
    padding: 0.45rem 1rem;
    background-color: #00AABF;
    color: white;
    font-size: 16px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.two-line {
    overflow: hidden;
    position: relative;
    line-height: 16px;
    max-height: 32px;
    text-align: justify;
    margin-right: -1em;
    padding-right: 1em;
}

.two-line:before {
    content: '...';
    position: absolute;
    right: 0;
    bottom: 0;
}

.two-line:after {
    content: '';
    position: absolute;
    right: 0;
    width: 16px;
    height: 16px;
    margin-top: 3px;
    background: white;
}


/*imag modal*/
.mobile-img-modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.9);
}

.modal-img {
    margin: auto;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-img {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}

.chat-img {
    max-width: 100px;
    max-height: 100px;
}

.chat-img-room {
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.9);
    width: 100vw;
    height: 100vh;
    object-fit: contain;
    animation-name: zoom;
    animation-duration: 0.6s;
}

#newContactSearchContainer .select2-search__field {
    width: 100% !important;
}


/*mobile team time sheet*/
.mobile-sheet-top-nav .chip {
    background-color: #fff;
}
.mobile-sheet-top-nav .chip.active {
    background-color: #00AABF;
}
.mobile-sheet-top-nav .chip a {
    color: #000;
}
.mobile-sheet-top-nav .chip.active a {
    color: #fff;
}

#teamTimeSheetDateRangePicker {
    background-color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 1rem 0 1rem 0;
    border-radius: 1rem;
    overflow: hidden;
    margin: 10px;
}

#timeSheetsList .sheet-item,
#timeSheetsSearchList .sheet-item
{
    background-color: #fff;
    padding: 1rem;
}
.mobile-employee-checked {
    height: 60px;
    width: 60px;
    background-color: var(--team-timesheet-employee-checked-color);
    border-radius: 50%;
    position: absolute;
    display: none;
    top: 0;
    left: 0;
}

.mobile-employee-checked:after {
    content: "";
    position: absolute;
    left: 23px;
    top: 7px;
    width: 18px;
    height: 34px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    display: block;
}
.mobile-employee-checked.active {
    display: block;
}
.time-off-item .mobile-employee-checked:after {
    content: "";
    position: absolute;
    left: 16px;
    top: 7px;
    width: 18px;
    height: 34px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    display: block;
}

.mobile-team-timesheet-container .mobile-employee-checked {
    display: none;
}

.mobile-team-timesheet-container.active .mobile-employee-checked {
    display: block;
}

.inputHintContainer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    border: 1px solid #E4E5E8;
    box-shadow: 0px 4px 8px rgba(41, 47, 72, 0.1);
    border-radius: 5px;
    z-index: 200;
    background: #fff;
    max-height: 300px;
    overflow-y: auto;
}

.inputHintContainer .inputHintItem {
    padding: 5px;
    border-bottom: 1px solid #EEEEEE;
}

.inputHintContainer .inputHintItem:last-child {
    border-bottom: none !important;
}


.apply-filter-btn {
    border-radius: 100px;
    background: var(--action-btn-bg-color);
    padding: 1em;
    width: 300px;
    color: #fff;
    font-weight: bold;
}

.gh_pie_loader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    background-image: url("/pie/images/loaders/loader_3.gif");
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1000;
    -ms-filter: "alpha(opacity=80)";
    filter: alpha(opacity=80);
    opacity: .8;
    pointer-events: none;
}

a.team-timesheet-dropdown:not(:last-child) {
    border-bottom: 1px solid #EEEEEE !important;
}

.team-timesheet-avatar {
    height: 60px !important;
    width: 60px !important;
    color: #fff;
}
.team-time-sheet-long-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.team-time-sheet-date-text {
    color: var(--primary-color) !important;
    font-size: 0.96em;
}
/* mobile team timesheet end */



/*timesheet modal*/
.mb-modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #292F48;
    display: block;
    opacity: .9;
}

.mb-modal-backdrop.show {

}
.mb-modal-backdrop.fade {
    opacity: 0;
}

.mb-modal {
    position: relative;
    top: 35vh;
    z-index: 1050;
    display: block;
    overflow: hidden;
    outline: 0;
    background-color: #FFFFFF;
    width: 85vw;
    margin: auto;
    border-radius: 0.2em;
}

.mb-modal-title {
    color: #292F48;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    margin: 0.8em 1em;
}

.mb-modal-title-slim {
    color: #292F48;
    font-size: 15px !important;
    font-weight: 300 !important;
    text-align: center;
    margin: 0.8em 1em;
}

.mb-modal-body {
    border: none;
    margin: 0 1em;
    padding: 0;
    width: 90%;
}

input.mb-modal-body::placeholder {
    color: #292F48;
    padding-left: 0;
}

.mb-modal-footer {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 1rem;
    margin-bottom: 0.5rem;

}

.mb-modal-cancel {
    border: 2px solid #797979;
    border-radius: 0.3em;
    background-color: white;
    color: #797979;
    padding: 0.5rem 1.5rem;
}

.mb-modal-cancel-text {
    border: 0 !important;
    border-radius: 0 !important;
    background-color: white;
    font-weight: 600 !important;
    color: #292F48 !important;
    font-size: 16px !important;
    padding: 0.5rem 1.5rem;
    flex: auto;
}

.mb-modal-submit {
    border: 2px solid var(--action-btn-bg-color);
    border-radius: 0.3em;
    background-color: var(--action-btn-bg-color);
    color: white;
    padding: 0.5rem 1.5rem;
}

.mb-modal-submit-text {
    border: 0px !important;
    border-radius: 0px !important;
    background-color: white !important;
    color: #DA291C !important;
    font-weight: 600 !important;
    padding: 0.5rem 1.5rem;
}
/*timesheet modal*/

/*range slide item*/
.slide-range-date-wrapper {
    width: 100%;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

.slide-range-date-container {
    display: flex;
    background-color: white;
    justify-content: center;
    flex-direction: row;
    align-items: center;
}

.slide-range-date-item {
    width: 20vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.slide-range-date-item span:first-child {
    margin-top: 1rem;
    font-size: 95%;
}

.slide-range-date-item span:nth-child(2) {
    margin-top: 0.4rem;
    font-size: 200%;
    font-weight: bold;
}

.slide-range-date-item span:nth-child(3) {
    font-size: 0.7rem;
    font-weight: bold;
    color: #39629D;
    margin-top: 0.7rem;
    margin-bottom: 0.5rem;
}

.slide-range-date-item.active {
    background-color: white;
    color: white;
}

.slide-range-date-item.active span:nth-child(3)
{
    font-size: 0.7rem;
    font-weight: bold;
    color: white;
}

/*range slide item*/

.add-punch-plus-button {
    cursor: pointer;
    position: fixed;
    bottom: 5vh;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--plus-btn-bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 8px 0px, rgba(0, 0, 0, 0.19) 0px 6px 20px 0px;
    color: white;
    z-index: 100; /*in case the click area is not reachable*/
    /*box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);*/
}

.add-punch-plus-button:not(.d-none) {
    display: flex !important;
}

@media (min-width: 768px) {
    .add-punch-plus-button {
        cursor: pointer;
        position: fixed;
        bottom: 5vh;
        right: 24px;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background-color: var(--plus-btn-bg-color);
        display: flex !important;
        align-items: center;
        justify-content: center;
        box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 8px 0px, rgba(0, 0, 0, 0.19) 0px 6px 20px 0px;
        color: white;
        z-index: 100;
    }
}

.punch-show-map-button {
    cursor: pointer;
    position: fixed;
    right: 24px;
    border-radius: 50%;
    background-color: var(--plus-btn-bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 8px 0px, rgba(0, 0, 0, 0.19) 0px 6px 20px 0px;
    color: white;
    z-index: 100; /*in case the click area is not reachable*/
    /*box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);*/
}

.map-button-bottom-right {
    bottom: 13vh;
    width: 56px;
    height: 56px;
}

@media (min-width: 768px) {
    .map-button-bottom-right {
        bottom: 16vh;
        width: 100px;
        height: 100px;
    }
}

@media (min-width: 1024px) {
    .map-button-bottom-right {
        bottom: 14vh;
        width: 100px;
        height: 100px;
    }
}

.add-account-plus-button {
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 100; /*in case the click area is not reachable*/
    /*box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);*/
}
/* switch end*/
.switch {
    position: absolute;
    display: inline-block;
    right: 28px;
    width: 60px;
    height: 34px;
}

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

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

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


input:checked + .slider {
    background-color: var(--toggle-active-color);
}

input:focus + .slider {
    box-shadow: 0 0 1px rgb(67, 98, 153);
}

input:checked + .slider:before {
    transform: translateX(26px);
}
/* switch end */


.check-box-group label:before {
    content:'';
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #436299;
    /*box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0 -15px 10px -12px rgba(0, 0, 0, 0.05);*/
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 10px;
}

.check-box-group label {
    position: relative;
    cursor: pointer;
}

.check-box-group label:before {
    border-radius: .25rem;
}

.check-box-group {
    display: block;
}

.check-box-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.check-box-group input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    left: 9px;
    width: 6px;
    height: 14px;
    border: solid #FFF;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.check-box-group input:checked + label:before {
    background-color: var(--timesheet-check-box-color);
}

/*loader*/
.gh-msg-loader {
    border: 5px solid #f3f3f3; /* Light grey */
    border-top: 5px solid #555; /* Blue */
    border-right: 5px solid #555;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 2s linear infinite;
}

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

/*tab-bar*/
.mobile-portal-footer {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100vw;
    background-color: white;
    position: fixed;
    bottom: 0;
    border-top: 1px solid #e2e2e2;
}

.mobile-portal-footer > div {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 7px 0 7px;
}

.mobile-portal-footer span {
    font-size: 12px;
    font-weight: bold;
    line-height: 10px;
    margin-top: 7px;
    color: #292F48;
}

.tab-item.disabled {
    pointer-events: none;
    opacity: 0.4;
}

.tab-item.active img {
    filter: drop-shadow(705px 0 0 var(--action-btn-bg-color));
    /*filter: invert(9%) sepia(100%) saturate(4669%) hue-rotate(344deg) brightness(113%) contrast(95%);*/
}

.tab-item.active i {
    color: var(--action-btn-bg-color);
    /*filter: drop-shadow(705px 0 0 var(--gh-nav-highlight));*/
    /*filter: invert(9%) sepia(100%) saturate(4669%) hue-rotate(344deg) brightness(113%) contrast(95%);*/
}

.tab-item.active span {
    color: var(--action-btn-bg-color);
}
/*tab-bar*/

/*top nav*/
.nav-tab-item {
    padding: 0.5rem;
}

.nav-tab-item.active {
    font-weight: bold;
}

.top-nav-bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.pointer-cursor {
    cursor: pointer;
}

div[name="message"] img {
    height: 50px !important;
    width: 50px !important;
}

div[contenteditable="true"] {
    transform: translateZ(0);
}

.loading-dots {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: #222;
    height: 15px;
}

.loading-dots .loading-dot {
    display: inline;
    margin-left: 0.1em;
    margin-right: 0.1em;
    margin-top: -10px;
    position: relative;
    font-size: 2em;
    font-family: Inter, Arial, Helvetica, sans-serif;
    line-height: 15px;
    -webkit-animation: showHideDot 1.5s ease-in-out infinite;
    animation: showHideDot 1.5s ease-in-out infinite;
}

.clickable {
    cursor: pointer !important;
}

/*x in search box*/
/* Clearable text inputs */
.clearable{
    /*background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' height='10px' width='10px'><text x='0' y='15' fill='red' font-size='15'>X</text></svg>") no-repeat right -10px center;*/
    background: #fff url(/mobile/images/close_mobile.svg) no-repeat right -12px center;
    background-size: 12px 12px;
    border: 1px solid #999;
    padding: 3px 18px 3px 4px;     /* Use the same right padding (18) in jQ! */
    border-radius: 3px;
    transition: background 0.4s;
}
.clearable.x  {
    background-position: right 10px center;
    font-size: 1rem;
} /* (jQ) Show icon */
.clearable.onX{ cursor: pointer; }              /* (jQ) hover cursor style */
.clearable::-ms-clear {display: none; width:0; height:0;} /* Remove IE default X */

/*x in search box*/

.form-control:focus {
    box-shadow: none;
}

/* Drop Shift Starts */
.drop-shift-view-card {
    background: #fff;
    height: 100%;
    border-radius: 2px;
}

.drop-shift-view-card .container-title {
    font-size: 0.8em;
}

.shift-info-container {
    background-color: #F1F8FB;
    border-radius: 6px;
}

.shift-name-dot {
    border-radius: 50%;
    height: 10px;
    width: 10px;
    flex-shrink: 0;
}


.search-border {
    border: 1px solid #d1e1e8;
    border-radius: 5px
}

.border-none {
    border: none !important
}

.checked-employee {
    height: 53px;
    width: 53px;
    background-color: var(--team-timesheet-employee-checked-color);
    border-radius: 50%;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
}

.checked-employee:after {
    content: "";
    position: absolute;
    left: 19px;
    top: 10px;
    width: 15px;
    height: 26px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    display: block;
}

.employee-avatar {
    border-radius: 50%;
    height: 100px;
    width: 100px
}

.profileImage {
    min-width: 53px;
    max-width: 53px;
    height: 53px;
    border-radius: 50%;
    background: #eee;
    font-size: 20px;
    color: #333;
    text-align: center;
    line-height: 53px;
    margin: 0
}

.employee-item {
    border-bottom: 1px solid rgba(229, 230, 231, .5);
}

.employee-item:first-of-type {
    border-top: 1px solid rgba(229, 230, 231, .5);
    padding-top: 0.5em !important;
}
#incoming_swap_request_container .employee-item,
#incoming_drop_request_container .employee-item
{
    border: none !important;
}

.shadow-md {
    box-shadow: 0px 5px 10px rgba(89, 102, 122, 0.15) !important
}


.mobile-request-card {
    background: #fff;
    box-shadow: 5px 5px 10px lightgrey;
    width: 100%;
}

.mobile-request-card:first-of-type {
    margin-top: 0 !important;
}
/* Drop Shift End */

.nav-tab-item {
    background-color: #2a2f48;
    width: 33.333333333%;
    padding: 10px 0;

    font-family: Verdana;
    letter-spacing: 0.5px;
    text-align: center;
    font-size: 0.9rem;
    color: rgb(135, 137, 130);
    font-weight: normal;
    border-bottom: 0 solid red;

    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-tab-item.active {
    color: white;
    font-weight: bold;
    border-bottom: 4px solid var(--navigation-tab-active-color);
}

.chat-name-ellipsis {
    max-width: 60vw;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: bold;
    text-transform: capitalize;
    white-space: nowrap;
}

/* employee schedule */
#table {
    list-style-type: none;
    background-color: white;
    margin: 0;
    padding: 0;
    position: relative;
    font-family: Inter, Arial, Helvetica, sans-serif;
    /* border: 1px solid black; */
}

ul.tableSection {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.tableHeader {
    /*background-color: rgb(42, 47, 70);*/
    background-color: var(--schedule-date-color);
    letter-spacing: 2px;
    color: white;
    font-size: 25px;
    font-family: Inter, Arial, Helvetica, sans-serif;
    /* height: 50px; */
    padding: 11px 0 11px 24px;
    /* border: 1px solid black; */
}

.workSheetCell {
    /* border: 1px solid black; */
    color: rgb(60, 64, 85);
    border-bottom: 0.1px solid rgb(240, 240, 240);

}

.sheet_time {
    margin: 14px 0 0 24px;
    font-size: 1.2rem;
    color: #292F48;
    font-weight: 500;
    font-family: Inter, Arial, Helvetica, sans-serif;
    position: relative;
    display: flex;
    align-items: center;
}

.sheet_start_time {
    vertical-align: center;

}

.sheet_end_time {
    vertical-align: center;
}

.sheet_cell_right_arrow {
    position: absolute;
    font-size: 0.8em;
    vertical-align: center;
    right: 24px;
}

.scheduleMeridiem {
    font-weight: 900;
}

.sheetEntry {
    margin: 5px 15px 0px 24px;
    font-size: 0.9em;
    line-height: 1;
}

.sheet_cell_seperator_line {
    margin: 0px 24px 0 24px;
    border: 0.5px solid #e9e9e9;
}

.sheetEntryImg {
    width: 15px;
    object-fit: contain;
    color: rgb(99, 180, 111);
    vertical-align: middle;
}

.sheetEntryText {
    vertical-align: middle;
    color: #292F48;
    font-family: Inter, Arial, Helvetica, sans-serif;
    margin: 0px 0px 0px 10px;
}

.sheet_action_area {
    box-sizing: border-box;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    position: relative;
}

.action_img {
    width: 35px;
    object-fit: contain;
}

.cover_action {
    padding-left: 24px;
}

.swap_action {
    cursor: pointer;
    position: absolute;
    right: 24px;
}

.action_name_text {
    font-family: Inter, Arial, Helvetica, sans-serif;
    color: #292F48;
}

.seperatorCell {
    height: 20px;
    background-color: rgb(244, 245, 248);
    /* border: 1px solid black; */
}

.openShiftHeader {
    background-color: rgb(244, 245, 248);
    color: rgb(60, 64, 85);
    font-size: 18px;
    padding: 12px 0px 12px 16px;
}

.noWorkCell {
    padding: 14px 0px 14px 24px;
    border-bottom: 0.1px solid rgb(240, 240, 240);
}

.noWorkImg {
    width: 40px;
    object-fit: contain;
    vertical-align: middle;
}

.noWorkText {
    color: #3B3B4D;
    opacity: 0.6;
    vertical-align: middle;
}

.openShiftsLabel {
    padding: 2vw;
    letter-spacing: 1.5px;
    font-family: Inter, Arial, Helvetica, sans-serif;
}

.openShiftBadge {
    padding: 0.2rem 0.6rem;
    background-color: #6B747D;
    color: white;
    border-radius: 2rem;
    overflow: hidden;
}

.notification {
    text-decoration: none;
    position: relative;
    display: inline-block;
    border-radius: 2px;
}

.notification .badge {
    position: absolute;
    top: -8px;
    right: -15px;
    padding: 5px 8px;
    border-radius: 50%;
    background: red;
    color: white;
}

/* employee schedule */

/* mobile dashboard starts */

.dashboard-tab-container {
    background-color: var(--gh-bar-color);
    height: 45px !important;
}

.dashboard-tab-container .dashboard-tab {
    font-size: 12px;
    padding-bottom: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    border-bottom: 4px solid transparent;
}

.dashboard-tab-container .dashboard-tab.active {
    color: black;
    font-weight: bold;
    border-bottom-color: var(--theme-color-active-main);
}

.dashboard-content-container .dashboard-badge {
    height: 32px;
    width: 32px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    line-height: 32px;
    background-color: black;
    color: white;
    text-align: center;
}

.dashboard-content-container .name-text {
    color: var(--gh-font-color);
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
}

.dashboard-content-container .normal-text {
    font-size: 0.7rem;
    color: var(--gh-font-color);
    text-transform: capitalize;
}

.dashboard-content-container .normal-text-danger {
    font-size: 0.7rem;
    color: #ED0000;
}

.dashboard-content-container .card-button {
    font-size: 12px;
    font-weight: 600;
}

#dashboardContainer .gh_loader{
    top: 50px;
    height: calc(100% - 50px);
}

#dashboardContentContainer .clock-nav-header {
    background-color: var(--gh-bar-color);
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    margin-right: 15px;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, 0.075) !important;
}

#dashboardContentContainer .clock-nav-header a {
    flex: 1;
    text-align: center;
    padding: 10px 40px;
    color: grey !important;
    text-decoration: none;
    border-bottom: 3px solid transparent;
}

#dashboardContentContainer .clock-nav-header a.selected {
    font-weight: 600;
    border-bottom-color: var(--theme-color-active-main);
    color: white !important;
}

.status-header > div > span {
    font-size: 14px;
    font-weight: 600;
}

.status-header > div > span.active,
.status-header > span.active {
    border-bottom: 3px solid;
}

#teamTimeOffContainer .status-header > div > div {
    font-size: 14px;
    font-weight: 600;
}

#teamTimeOffContainer .status-header > div > div.active,
.status-header > div.active {
    border-bottom: 3px solid;
}

.float-map-btn {
    position: absolute;
    bottom: 30px;
    width: 100px;
    border-radius: 1rem;
    left: calc(50vw - 50px);
    padding: 0.3rem 1rem;
    background-color: #00AABF;
    color: white;
    font-size: 16px;
    text-align: center;
    font-weight: bold;
}
/* mobile dashboard ends */


.circle-container {
    background: #EF0E27;
    border-radius: 50%;
    color: #FFFFFF;
    display: inline-block;
    font-weight: bold;
    line-height: 1.7em;
    margin-right: 5px;
    text-align: center;
    width: 1.7em;
    font-size: 0.7rem;
    white-space: nowrap;
}

.chat-icon {
    filter: drop-shadow(705px 0 0 var(--primary-color));
}

/* schedule request view */
#requestsShiftContainer .nav-tabs {
    background: var(--navigation-tab-background-color); 
    margin: 10px !important; 
    border-radius: 2rem; 
    overflow: hidden;
    display: flex;
    flex-direction: row;
    position: relative;
    justify-content: center;
}

#requestsShiftContainer .nav-tabs li {
    background-color: var(--navigation-tab-background-color);
    width: 50%;

    font-family: Verdana, sans-serif;
    letter-spacing: 0.5px;
    text-align: center;
    font-size: 12px;
    color: var(--action-btn-bg-color);
    font-weight: normal;

    display: flex;
    justify-content: center;
    align-items: center;
}

#requestsShiftContainer .nav-tabs > li > a {
    background-color: var(--navigation-tab-background-color);
    width: 50vw;

    font-family: Verdana, sans-serif;
    letter-spacing: 0.5px;
    text-align: center;
    font-size: 12px;
    color: var(--action-btn-bg-color);
    font-weight: normal;

    display: flex;
    justify-content: center;
    align-items: center;
}

#requestsShiftContainer .nav-tabs > li > a.active {
    color: white;
    font-weight: bold;
    border-radius: 2rem;
    padding: 8px 5px;
    background-color: var(--action-btn-bg-color);
}

.attestation {
    color: var(--primary-color);
}
/* schedule request view */



.gh-del-btn {
    background-color: #EC262C;
    border: none;
    text-align: center;
    color:white;
    width: 90%;
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 2rem;
    margin: 1rem auto;
    display: none;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
    border-radius: 8px;
    color: black;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
}

.centered {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

.none-pointer-events {
    pointer-events: none;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
    border-radius: 8px;
    color: black;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
}

.centered {
    position: fixed !important;
    top: 45% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

a.dropdown-item:active {
    background-color: var(--navigation-tab-active-color) !important;
}

/* The container */
.gh-radio-container {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.gh-radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.gh-radio-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 50%;
}

.gh-radio-container:hover input ~ .gh-radio-checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.gh-radio-container input:checked ~ .gh-radio-checkmark {
    background-color: var(--team-timesheet-employee-checked-color);
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.gh-radio-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.gh-radio-container input:checked ~ .gh-radio-checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.gh-radio-container .gh-radio-checkmark:after {
    top: 5px;
    left: 5px;
    width: 10px;
    height:10px;
    border-radius: 50%;
    background: white;
}

@media screen and (device-aspect-ratio: 40/71) {
    .datepicker.dob::-webkit-input-placeholder {
        font-size: 0.7rem;
    }
}

#scheduleSwapShiftContainer .card {
    background-color: transparent !important;
}

/*timesheet*/
#timeSheetsContainer input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 18px;
    height: 18px;
    background-size: 24px;
    background: #fff no-repeat center -4px;
    border: 2px solid var(--timesheet-check-box-color);
    outline: none;
    vertical-align: text-bottom;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: unset;
}

#timeSheetsContainer input[type="checkbox"]:checked:after {
    content: '✔';
    text-align: center;
}

#timeSheetsContainer input[type="checkbox"]:checked {
    background-color: var(--timesheet-check-box-color);
    color: white;
}

/* start - mobile time sheet bank*/

#timesheetRepeatUnit
{
    position: absolute;
    right: 12vw;
    font-size: 1rem;
    color: rgb(63, 67, 86);
}


#timeSheetsBankList {
    display: flex;
    flex-direction: column;
}

#timeSheetsBankList .bankItem {
    border-left: 1rem solid var(--timesheet-bank-side-bar-color);
    background-color: white;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075);
}

#timeSheetsBankList .itemData {
    margin: 4vw 0 4vw 3vw;
}

#timeSheetsBankList .itemData .number {
    margin-left: 1vw;
}

#timeSheetsBankList .chevron {
    margin-right: 1rem;
}

#bankDetailBackButton i.fa-chevron-left {
    color: #fff;
}

#bankDetailBody .field-group {
    display: flex;
    background-color: white;
    color: #2a2f46;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

#bankDetailBody .field-group .text-lg {
    font-size: 1rem;
}

#bankDetailBody .field-group .grey {
    color:grey;
}

/*#bankDetailBody .field-group input {*/
/*display: block;*/
/*width: 100%;*/
/*font-size: 1rem;*/
/*background-color: #fff;*/
/*border: none;*/
/*outline: none;*/
/*text-align: right;*/
/*font-weight: bold;*/
/*}*/

#bankDetailBody .field-group div.input-wrapper {
    width: 160px;
}

#bankDetailBody .field-group div.input-wrapper input{
    width: 50%;
    font-weight: bold;
}

#bankDetailBody .field-group div.select-wrapper {
    width: 60%;
}

#bankDetailBody .field-group .error {
    color: #dc3545;
}

#bankDetailBody .field-group:not(:last-child) {
    border-bottom: 1px solid #EEE;
}

#timeSheetsTimeOffPoliciesContainer #timeOffPoliciesBody .policyItem {
    display: flex;
    background-color: white;
    color: #2a2f46;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

#timeSheetsTimeOffPoliciesContainer #timeOffPoliciesBody .policyItem .text-lg {
    font-size: 1rem;
}

#timeSheetsTimeOffPoliciesContainer #timeOffPoliciesBody > .policyItem:nth-child(odd) {
    background-color: white;
}

#timeSheetsTimeOffPoliciesContainer #timeOffPoliciesBody > .policyItem:nth-child(even) {
    background-color: transparent;
}
/* end - mobile time sheet bank*/

/* table row related*/
.row-item {
    display: flex;
    background-color: white;
    color: var(--gh-font-color);
    flex-direction: row;
    justify-content: space-between; /* make the second element go to the right*/
    align-items: center;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    position: relative;
    /*border: 1px solid black;*/
}

.row-separate-line {
    background-color: #e9e9e9;
    width: 100%;
    height: 1px;
}

.row-separate-gap {
    width: 100%;
    height: 15px;
    background-color: var(--gh-background-color);
}

/*.optional {*/
/*    display: none;*/
/*}*/

/* table row related*/

/*location track*/
.location-track-dot {
    width: 10px;
    height: 10px;
    position: absolute;
    z-index: 999;
    background-color: #5491f5;
    border: 2px solid white;
    border-radius: 50%;
}
.btn-pressed {
    filter: invert(48%) sepia(13%) saturate(3207%) hue-rotate(130deg) brightness(95%) contrast(80%);
}
.map-play-btn .fas.fa-play {
    display: block;
}
.map-play-btn.map-pause .fas.fa-play {
    display: none;
}
.map-play-btn.map-pause .fas.fa-pause {
    display: block;
}
.map-play-btn .fas.fa-pause {
    display: none;
}
/*location track*/

/*accessibility*/

.acsb-widget.acsb-active .acsb-main .acsb-actions-box .acsb-profiles
.acsb-profile.acsb-active .acsb-profile-description, .acsb-widget[role="dialog"].acsb-active
.acsb-main .acsb-actions-box .acsb-profiles .acsb-profile.acsb-active .acsb-profile-description {
    display: block;
    max-height: 150px;
    padding-top: 15px;
    overflow: scroll !important;
}

/*google map*/
a[href^="http://maps.google.com/maps"],
a[href^="https://maps.google.com/maps"],
a[href^="https://www.google.com/maps"] {
    display: none !important;
}
.gm-bundled-control .gmnoprint {
    display: block;
}
.gmnoprint:not(.gm-bundled-control) {
    display: none;
}
/*google map*/
