﻿:root {
    --input-hover-background: #F5F5F5;
    --input-focus-border-color: #5774E7;
    --input-placeholder-color: #808080;
}

.userCard-popup > .modal-dialog {
    width: 1100px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    height: 662px;
}

    .userCard-popup > .modal-dialog > .modal-content {
        overflow-y: hidden;
        overflow-x: hidden;
        border: none;
    }

.modal-open > .userCard-popup {
    overflow: auto;
    height: 100%;
}

.disabledButton {
    opacity: .50;
}

.uc-userEditForm {
    width: 1100px;
    height: 660px;
    display: flex;
    font-family: GlowRegular;
}

.uc-userInfo_section {
    display: flex;
    flex-direction: column;
    width: 320px;
    padding: 0 0 20px 0;
    position: relative;
}

.uc-userInfo_section:before {
    content: '';
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: #DCDCDC;
    z-index: 99;
}

    .uc-userInfo_section .uc-userInfo_innerContainer.mainInfoSection {
        display: flex;
        flex-direction: column;
        row-gap: 16px;
        flex-grow: 1;
        padding: 0 20px;
    }

    #mainInfoSectionNiceScroll::-webkit-scrollbar {
        width: 3px;
    }

    #mainInfoSectionNiceScroll::-webkit-scrollbar-thumb {
        background-color: #dcddde;
        border: none;
        border-radius: 3px;
    }

    #mainInfoSectionNiceScroll::-webkit-scrollbar-track {
        background-color: transparent;
    }

    .uc-userInfo_section .uc-buttons_section {
        display: flex;
        justify-content: end;
        align-items: center;
        padding: 0 30px;
    }

    .uc-userInfo_section .uc-buttons_body {
        display: flex;
        justify-content: end;
        align-items: center;
        margin-top: 16px;
        height: 38px;
    }

    .uc-userInfo_section .uc-buttons_button {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

.uc-userInfo_section .uc-userInfo_innerContainer .uc-inputs-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
    row-gap: 16px
}

    .uc-userInfo_section .uc-userInfo_innerContainer .uc-inputs-wrapper > div {
        flex-basis: 50%;
    }

    .uc-userInfo_section .uc-userInfo_innerContainer .uc-inputs-wrapper .uc-inputs-wrapper__left,
    .uc-userInfo_section .uc-userInfo_innerContainer .uc-inputs-wrapper .uc-inputs-wrapper__right {
        display: flex;
        flex-direction: column;
        width: 0;
        flex-grow: 1;
        row-gap: 16px;
    }

.uc-avatar_wrapper {
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.uc-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 50%;
    height: 60px;
    width: 60px;
    background-position: center;
    /* Make the background image cover the area of the <div>, and clip the excess */
    background-size: cover;
    background-color: #EEF1FE;
}

    .uc-avatar span {
        width: 32px;
        font-size: 9px;
        line-height: 10px;
        font-family: 'GlowSemiBold';
        color: var(--input-placeholder-color);
    }

    .uc-avatar:hover {
        opacity: 0.4;
    }

.uc-avatar__background {
    border-radius: 50%;
    height: 60px;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 24px;
    user-select: none;
    background-color: #2196F3;
}

.uc-username_section {
    text-align: center;
    position: relative;
    font-size: 0;
    width: 100%;
    border-radius: 4px;
}

.uc-username_section.uc-userInfo_innerContainer {
    padding: 2px 8px;
}

    .uc-username_section.uc-userInfo_innerContainer:hover {
        background: var(--input-hover-background);
    }

.uc-username_text {
    width: 100%;
    font-family: GlowSemiBold;
    font-size: 16px;
    color: #36393e;
    border: 0;
    outline: none;
    cursor: text;
    min-height: 24px;
    text-align: start;
    word-break: break-word;

    display: -webkit-box;
    max-width: 200px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.uc-userName-container {
    width: 100%;
    display: flex; 
    align-items: center;
}

.uc-userName-content {
    display: flex; 
    flex-direction: column; 
    width: 100%;
    row-gap: 2px;
}

.uc-userName_input {
    font-size: 16px;
    display: inline-block;
    width: 100%;
    height: 24px;
    line-height: 24px;
    font-size: 16px;
    font-family: GlowRegular;
    border-bottom: 0;
    padding: 0;
}

.uc-userName_fake-placeholder {
    opacity: 0.89;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    color: #b6b6b6;
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid #ebebeb;
    cursor: text;
}

.uc-pensil {
    position: absolute;
    top: -1px;
    left: calc(100% - 50px);
    cursor: pointer;
    width: 35px;
    height: 100%;
    display: flex;
    justify-content: right;
    align-items: center;
    background-image: linear-gradient(to right, rgb(255, 255, 255, 0) 0%, rgb(255, 255, 255, 0.8) 20%, rgb(255, 255, 255) 50%, rgb(255, 255, 255) 100%);
}

.uc-actionButtons_section {
    text-align: center;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 10px;
}

    .uc-actionButtons_section .changePasswordSection {
        display: flex;
        align-items: center;
        column-gap: 4px;
    }

    .uc-actionButtons_section .changePasswordSection .uc-changePass-btn {
        background-color: transparent;
        border: none;
        outline: 0;
        display: flex;
        font-size: 13px;
        line-height: 16px;
    }

    .uc-actionButtons_section .deleteUserSection {
    }

        .uc-actionButtons_section .deleteUserSection .uc-delete-btn {
            background-color: transparent;
            border: none;
            outline: 0;
            display: inline-block;
        }

            .uc-actionButtons_section .deleteUserSection .uc-delete-btn:before {
                content: url("/images/shared/newTrashIcon.png");
                position: absolute;
                top: -1px;
                left: -16px;
            }

        .uc-actionButtons_section .deleteUserSection img {
            margin-right: 4px;
        }

.uc-input_label,
.uc-roles_label {
    display: block;
    font-size: 14px;
    color: #B6B6B6;
    font-family: GlowRegular;
    margin-left: 10px;
}

    .uc-input_label .currencySign {
        max-width: 200px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: inline-block;
        vertical-align: bottom;
    }

.uc-roles_label {
    padding-left: 0;
}

.uc-input_placeholder {
    padding-left: 10px;
    font-family: GlowRegular;
    color: #959595;
    width: 100%;
    border: 0;
    border-bottom: 1px solid #efefef;
    display: inline-block;
    cursor: text;
    font-size: 14px;
    height: 24px;
}

/*.uc-input {
    padding-left: 10px;
    font-family: GlowBold;
    font-size: 14px;
    color: #36393e;
    border: 0;
    outline: none;
    border-bottom: 1px solid #5774e7;
    width: 100%;
    display: inline-block;
    height: 24px;
    line-height: 24px;
} */

.uc-input {
    color: var(--input-placeholder-color);
    width: 100%;
    display: inline-block;
    border-radius: 4px;
    outline: 0;
    padding: 4px 24px 4px 10px;
    border: 1px solid var(--input-hover-background); 
    height: 28px;
}
    
    .uc-input:focus {
        width: 100%;
        display: inline-block;
        color: #36393e;
    }

    .uc-input.initials {
        text-transform: uppercase;
    }

.uc-input_value {
    font-family: GlowRegular;
    font-size: 14px;
    color: var(--main-text-color);
    outline: none;
    width: 100%;
    display: block;
    padding: 0px 10px;
    line-height: 26px;
    border: 1px solid transparent;
}

    .uc-input_value.initials {
        text-transform: uppercase;
    }

    .uc-input_value.placeHolder {
        color: var(--input-placeholder-color);
    }

    .uc-input-inner-wrapper {
        position: relative;
    }
    
    .uc-input,
    .uc-input_value {
        border-radius: 4px;
    }
    
    .uc-input:focus {
        border: 1px solid var(--input-focus-border-color); 
    }
    
    .uc-input-wrapper:not(.disabled) .uc-input_value:hover {
        background: var(--input-hover-background);
        cursor: pointer;
    }
    
    .uc-input:not(:focus,.errorInput ):hover {
        background: var(--input-hover-background);
        cursor: pointer;
    }
    
    .uc-input_cross {
        background: url(../../images/shared/small-close-dark.svg) no-repeat center center;
        cursor: pointer;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 0px;
        width: 24px;
        height: 24px;

    }

    .uc-input_cross.uc-internal-id {
        right: 10px;
    }

    .uc-input_cross:hover {
        background: url(../../images/shared/small-close-blue.svg) no-repeat center center;
    }
    
    
    .uc-role-container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 4px;
        border-radius: 4px;
        font-family: GlowRegular;
        font-size: 14px;
        color: #4A4A4A;
    }
    
    .uc-role-container.add-role {
        padding: 4px 10px;
    }
    
    .uc-role-container.add-role:hover {
        background: var(--input-hover-background);
        cursor: pointer;
    }
    
    .uc-role-container:not(.add-attribute).side-paddings {
        padding: 0px 10px;
    }
    
    .uc-changePass_section {
        padding: 0 20px;
    }
    
    .change-password-form {
        display: flex;
        flex-direction: column;
        row-gap: 16px;
        margin: 0 -10px;
    }
    
    .uc-roles_wrapper,
    .uc-email-wrapper {
        margin: 0 -10px;
    }
    
    .uc-userName-container .uc-input_value:not(.placeHolder) {
        font-size: 16px;
        padding: 0px 10px;
        font-family: 'GlowSemibold';
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
.uc-emailInput_wrapper,
.uc-typeInput_wrapper,
.uc-usernameInput_wrapper,
.uc-rateInput_wrapper,
.uc-changePassInput_wrapper,
.uc-input-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    row-gap: 2px;
}

.uc-email_value,
.uc-rate_not-specified,
.uc-rate_value {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.uc-rate_not-specified {
    font-family: GlowRegular;
    font-size: 14px;
    height: 24px;
    color: var(--input-placeholder-color);
}

.uc-input.initials[placeholder]:hover {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.uc-role {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    text-overflow: ellipsis;
    max-width: 310px;
    background-color: #EEF1FE;
    padding: 6px;
    line-height: 16px;
    border-radius: 4px;
}

    .uc-role .uc-roleName {
        font-size: 13px;
        min-height: 22px;
        min-width: 28px;
    }

    .uc-role:hover .removeIcon {
        display: inline-block;
    }

    .uc-role .removeIcon {
        position: absolute;
        display: none;
        top: 0;
        right: 4px;
        width: 24px;
        height: 100%;
        background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #EEF1FE 50%, #EEF1FE 100%);
    }

    .uc-role .removeIcon img {
        width: 8px;
        height: 8px;
        float: right;
        margin-top: 10px;
        cursor: pointer;
        margin-right: 2px;
    }

.uc-newRole {
    background-color: white;
    position: relative;
    cursor: pointer;
    vertical-align: middle;
    display: inline-block;
    width: 170px;
}

.uc-newRoleDefault {
    width: 100px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
}

.uc-rolesPlus {
    cursor: pointer;
    padding: 4px;
    margin: -4px;
}

.uc-rolesPlusIcon {
    background-image: url('../../images/shared/addIcon.svg');
    background-position: center;
    background-repeat: no-repeat;
    height: 16px;
    width: 16px;
    display: block;
}

.uc-userEditForm .editedField {
    color: #2bb268;
}

.uc-dataEdit_section .uc-buttons_section {
    position: relative;
    display: flex;
    justify-content: end;
    padding-top: 16px;
}

.uc-dataEdit_section .uc-buttons_section:before {
    content: '';
    position: absolute;
    height: 1px;
    background: #DCDCDC;
    top: 0px;
    left: -20px;
    right: -20px;
    z-index: 1;
}


.uc-buttons_section .changePassword-btn {
    white-space: nowrap;
    width: 150px;
}

.uc-invitation_date {
    display: inline-block;
    font-family: "GlowRegular";
    font-size: 12px;
    color: #B6B6B6;
    letter-spacing: 0;
    text-align: center;
    width: 150px;
}

.uc-activity-buttons_body {
    font-size: 13px;
    display: flex;
    color: #B6B6B6;
    gap: 10px;
    padding-left: 18px;
    margin-bottom: -13px;
}

.uc-btn {
    width: 131px;
    outline: none;
}

.divWithSpinner {
    position: absolute;
    display: none;
}

.divWithSpinner .ui-loader-dark {
    margin: 0;
}

.uc-chengePass_section {
    margin-top: 18px;
}

.uc-changePass_header {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    font-size: 16px;
    font-family: GlowBold;
    color: var(--input-placeholder-color);
}

.uc-btn_cancel {
    height: 38px;
    width: 98px;
}

.uc-userEditForm .uc-dataEdit_section .uc-capacity_section .header {
    padding-left: 10px;
    background-color: #fdfdfd;
    display: flex;
}

.uc-capacity_section .header {
    line-height: 23px;
    border-bottom: solid 1px #ebebeb;
    height: 27px;
    font-size: 12px;
}

.capacityErrorInput {
    border: 1px solid red !important;
}

/* data editing section */
.uc-dataEdit_section {
    padding: 20px 20px 16px 20px;
    position: relative;
    width: 780px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.uc-dataEdit_section__body {
    display: grid;
    grid-auto-rows: 1fr;
    flex-grow: 1;
    row-gap: 20px;
    height: 0;
}

.uc-dataEdit_section__container {
    display: flex; 
    flex-direction: column;
}

.uc-closeCross {
    cursor: pointer;
    position: absolute;
    right: 12px;
    top: 12px;
    height: 10px;
    content: url(/images/resourceManagement/user/greyCross@2x.png);
}

.uc-section_header {
    display: flex;
    align-items: center;
    column-gap: 4px;
    padding-left: 12px;
    font-size: 16px;
    font-family: GlowSemibold;
    line-height: 24px;
    margin-bottom: 8px;
}

.uc-section_header-title {
    margin-right: 4px;
}



    .uc-section_header .unitPoolCapacity {
        display: inline-block;
    }

        .uc-section_header .unitPoolCapacity input {
            width: 40px;
            margin-right: 0;
            padding-right: 10px;
            text-align: right;
            line-height: 14px;
        }

        .uc-section_header .unitPoolCapacity span {
            text-transform: none;
            font-family: GlowRegular;
            font-style: normal;
            font-weight: normal;
            font-size: 12px;
            line-height: 16px;
            letter-spacing: normal;
        }

.uc-notes_section {
    position: relative;
}

.uc-addNote_info {
    height: 28px;
    border-radius: 4px;
    background-color: #ffffff;
    border: solid 1px #dcdcdc;
    display: inline-block;
    vertical-align: middle;
    outline: none;
    font-family: GlowRegular;
}

.uc-addData_btn {
    cursor: pointer;
    background-image: url('../../images/shared/addIcon.svg');
    background-position: center;
    background-repeat: no-repeat;
    height: 16px;
    width: 16px;
    margin-right: 28px;
}

.uc-addData_btn.addData-shown {
    opacity: 0.4;
}

.uc-addDataClose_btn {
    -ms-transform: rotate(45deg); /* IE 9 */
    -webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
    transform: rotate(45deg);
}

.uc-notes_addMode {
    position: absolute;
    background: #FFFFFF;
    width: 372px;
    top: 0;
    box-shadow: 0px 0px 2px rgba(70, 89, 191, 0.3), 0px 2px 4px rgba(0, 41, 199, 0.2);
    border-radius: 4px;
    z-index: 1;
}

.uc-availability-add-mode {
    position: fixed;
    background: #FFFFFF;
    width: 372px;
    box-shadow: 0px 0px 2px rgba(70, 89, 191, 0.3), 0px 2px 4px rgba(0, 41, 199, 0.2);
    border-radius: 4px;
    z-index: 2;
}

.uc-availability-add-mode .uc-availability-add-mode__close{
    background: transparent;
}

.uc-availability-add-mode .uc-availability-add-mode__close:hover {
    background: #EEF1FE;
}

.uc-availability-add-mode__body {
    display: flex;
    padding: 20px;
    column-gap: 12px;
}

.uc-availability-add-mode__input-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.uc-availability-add-mode__input-group label {
    font-size: 14px;
    font-family: GlowRegular;
    font-weight: 400;
    line-height: 20px;
    color: var(--input-placeholder-color);
    margin: 0;
}

.uc-availability-add-mode__footer {
    padding: 16px 20px;
    display: flex;
    column-gap: 12px;
    box-shadow: inset 0px 1px 0px #DCDCDC;
    justify-content: end;
}

.uc-availability-add-mode__footer button {
    width: 80px;
    height: 28px;
}

.uc-availability-add-mode .uc-availability_capacityDates button {
    width: 94px;
}



.uc-notes_title {
    font-family: GlowBold;
    display: block;
    text-transform: uppercase;
    line-height: 38px;
    font-size: 14px;
    letter-spacing: 1.3px;
}

.uc-addNote_autor {
    line-height: 28px;
    font-size: 14px;
    height: 28px;
    color: #4a4a4a;
    padding-left: 10px;
    width: 120px;
    margin-right: 10px;
}

.uc-addNote_infoInput {
    width: 504px;
    padding-left: 10px;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
    outline: none;
}

    .uc-addNote_infoInput.ng-dirty.ng-invalid-required {
        border: solid 1px #dcdcdc;
    }

.uc-send_btn {
    display: inline-block;
    height: 16px;
    cursor: pointer;
}

.uc-notesList_item {
    margin-bottom: 10px;
}

.uc-notesList {
    padding-left: 10px;
    padding-right: 10px;
    background-color: #fdfdfd;
    height: 92px;
    overflow-x: hidden;
    overflow-y: hidden;
}

.uc-note_reporter {
    font-size: 14px;
    font-family: GlowSemiBold;
    color: #4a4a4a;
    margin-right: 10px;
}

.uc-note_reportDate {
    font-size: 13px;
    color: var(--input-placeholder-color);
    font-family: GlowRegular;
}

.uc-note_text {
    font-size: 13px;
    color: #4a4a4a;
    font-family: GlowRegular;
    display: block;
    word-wrap: break-word;
}

.uc-noNotes_message {
    font-size: 14px;
    color: #B6B6B6;
    display: block;
    padding: 4px 12px;
}

.uc-notesListBlurredBottom,
.uc-capacityListBlurredBottom,
.uc-availabilityListBlurredBottom {
    height: 10px;
    position: absolute;
    width: 100%;
    bottom: -5px;
    left: 0;
    background: -webkit-linear-gradient( rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 1) 100% );
    pointer-events: none;
}

.uc-notesListBlurredTop,
.uc-capacityListBlurredTop,
.uc-availabilityListBlurredTop {
    height: 12px;
    position: absolute;
    width: 100%;
    top: 38px;
    left: 0;
    background: -webkit-linear-gradient( rgba(255, 255, 255, 1) 10%, rgba(255, 255, 255, 0) 100% );
    pointer-events: none;
}

.uc-capacityListBlurredTop,
.uc-availabilityListBlurredTop {
    top: 65px;
}

.subuser_in_capacity {
    height: 19px;
    margin-bottom: 6px;
}

.uc-capacity_section {
    position: relative;
}

    .uc-capacity_section .body {
        padding-left: 10px;
        overflow: hidden;
        padding-top: 5px;
        background-color: #fdfdfd;
        height: 183px;
    }

        .uc-capacity_section .body .capacityUser {
            vertical-align: top;
        }

        .uc-capacity_section .body .capacityRow {
            display: flex;
            padding-right: 10px;
        }

        .uc-capacity_section .body .capacityRow .capacityUser {
            flex: 0 0 24%;
        }

        .uc-capacity_section .body .capacityRow.capacityGroup {
            flex: 0 0 24%;
        }

        .uc-capacity_section .body .capacityRow .capacityPercentage {
            flex: 0 0 15.5%;
            text-align: right;
        }

        .uc-capacity_section .body .capacityRow .capacityPercentage .form-control {
            padding: 0;
            padding-left: 5px;
        }

        .uc-capacity_section .body .capacityRow .capacityPercentageCurrent {
            flex: 1 1 auto;
            text-align: right;
        }

.uc-dataEdit_section .truncatedText {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.uc-dataEdit_section .capacityUser {
    flex: 0 0 24%;
}

.uc-dataEdit_section .capacityGroup {
    flex: 0 0 24%;
}

.uc-dataEdit_section .capacityPercentage {
    flex: 0 0 15.5%;
    text-align: right;
}

    .uc-dataEdit_section.capacityPercentage .form-control {
        padding: 0;
        padding-left: 5px;
    }

.uc-dataEdit_section .capacityPercentageCurrent {
    flex: 1 1 auto;
    text-align: right;
}

    .uc-dataEdit_section.capacityPercentageCurrent .form-control {
        padding: 0;
        padding-left: 5px;
    }

.uc-capacity_section .showHideColumnsButton {
    position: absolute;
    right: 10px;
    top: 43px;
    cursor: pointer;
    background-image: url('../../images/resourceManagement/user/settings.png');
    background-position: center;
    background-repeat: no-repeat;
    height: 15px;
    width: 15px;
}

    .uc-capacity_section .showHideColumnsButton:hover {
        background-image: url('../../images/resourceManagement/user/settings_hovered.png');
    }



.uc-availability_section {
    position: relative;
    display: flex;
    flex-direction: column;
    max-height: 100%;
}

    .uc-availability_section .header {
        display: flex;
        justify-content: space-between;
        position: relative;
        padding: 6px 56px 6px 12px;
        background: var(--input-hover-background);
        border-radius: 4px;
        font-size: 13px;
        font-family: GlowSemibold;
        line-height: 18px;
        color: var(--input-placeholder-color);
        margin-bottom: 8px;
    }

    .uc-availability_section .body {
        overflow: hidden;
    }

    .uc-availability_section .body.availabilityList {
        overflow: auto;
    }

.uc-availability_newCapacity,
.uc-availability_capacityDates {
    display: inline-block;
    height: 28px;
    border-radius: 4px !important;
    padding: 4px 8px;
    background-color: #ffffff;
    border: solid 1px #dcdcdc;
    font-size: 14px;
    color: #4a4a4a;
    vertical-align: middle;
    outline: none;
}

.uc-availability_newCapacity {
    width: 120px;
}

.uc-availability_section .capacityValue,
.uc-availability_section .capacityStart,
.uc-availability_section .capacityEnd {
    display: inline-block;
}

.uc-availability_section input:focus {
    border-color: var(--link-blue);
}
.uc-availability_section .capacityValue {
    width: 110px;
    /* margin-right: 173px; */
}

.uc-availability_section .body .capacityValue {
    padding: 4px 9px;
}
.uc-availability_section .header .dateContainer {
    display: flex;
    column-gap: 40px;
}

.uc-availability_section .body .dateContainer {
    display: flex;
    column-gap: 20px;
}

.uc-availability_row {
    display: flex;
    justify-content: space-between;
}

.uc-availability_section .header .capacityStart,
.uc-availability_section .header .capacityEnd {
    width: 90px;
    text-align: right;
}

.uc-availability_section .body .capacityStart,
.uc-availability_section .body .capacityEnd {
    width: 110px;
    text-align: right;
    padding: 4px 8px;
}

.uc-availability_section .editCapacity-daterange {
    display: flex;
    column-gap: 40px;
    height: 28px;
}

.uc-availability_section .createCapacity-daterange {
    display: flex;
    column-gap: 12px;
}

.uc-availability_section .createCapacity-daterange input {
    background: url(/images/shared/small-calendar.png) no-repeat;
    background-position: 69px 50%;
}

.uc-availability_section .input-group {
    display: flex;
    justify-content: space-between;
}

.uc-capacity_section .capacityCurrentHeader {
    margin-right: 30px;
}

.uc-availability_section .uc-availability_capacityDates {
    width: 90px;
    border-radius: 4px;
    text-align: left;
}

/*.uc-availability_dataList {
    height: 105px;
    overflow-y: hidden;
    position: relative;
}*/

.uc-availability_dataList .header {
    line-height: 23px;
    border-bottom: solid 1px #ebebeb;
}

.uc-availability_dataList .body .capacityValue,
.uc-availability_dataList .body .capacityStart,
.uc-availability_dataList .body .capacityEnd {
    font-size: 14px;
}

.uc-availability_dataList .body .capacityValue {
    font-family: GlowBold;
}

.uc-availability_data {
    padding-left: 10px;
    padding-right: 48px;
}


.datepicker {
    overflow: hidden;
    z-index: 9999;
}


.uc-capacity_section .capacityColumnsVisibilityListbox {
    position: absolute;
    right: 5px;
    top: 31px;
    z-index: 1;
}

.uc-capacity_section .jqx-listitem-state-normal {
    font-family: GlowBold;
}

.uc-errorMessages_section {
    width: 445px;
    position: absolute;
    bottom: 30px;
    text-align: center;
    font-family: GlowRegular;
    font-size: 12px;
    color: #ec4a43;
}

.uc-userEditForm .role.newRole {
    background-color: white;
    border: 1px solid #eceef2;
    position: relative;
    padding-left: 5px;
    padding-right: 5px;
    cursor: pointer;
    z-index: 1;
    display: inline-block;
    vertical-align: top;
    width: 164px;
}

.uc-userEditForm .editUser .rolelist {
    position: absolute;
    right: -1px;
    top: 18px;
    text-align: right;
    background-color: white;
    border: 1px solid #eceef2;
    z-index: 11;
}

.uc-userEditForm .rolelist .role {
    border: 0;
    background-color: inherit;
    display: block;
    margin: 0;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.uc-userEditForm .down_arrow {
    position: absolute;
    top: 0px;
    right: 1px;
    padding: 8px;
}

.uc-userEditForm .rolelist .role:hover {
    background-color: #0294c4;
    color: white;
}

.uc-userEditForm .form-control {
    height: 25px;
    outline: none;
}

.uc-typeInput_wrapper .customDropdown {
    cursor: pointer;
}

    .uc-typeInput_wrapper .customDropdown input {
        font-family: GlowRegular;
        cursor: pointer;
    }

    .uc-typeInput_wrapper .customDropdown:not(.opened) input {
        border: 1px solid transparent;
    }

    .uc-typeInput_wrapper .customDropdown:not(.opened) input:hover {
        background: var(--input-hover-background);
    }

    .uc-typeInput_wrapper .customDropdown input[disabled] {
        opacity: 0.4;
        cursor: default;
    }

    .uc-typeInput_wrapper .customDropdown > .arrowIcon-container,
    .uc-typeInput_wrapper .customDropdown > div.arrowIcon-container.opened {
        display: none;
    }
/*error messages*/


.uc-photo_error {
    color: #EC4A43;
    font-family: 'GlowSemibold';
    font-size: 12px;
    line-height: 15px;
    text-align: center;
    background: rgba(254, 237, 237, 0.9);
    border-radius: 4px;
    padding: 7px 7px;
    position: fixed;
    top: 0;
    left: calc(16% + 3px);
    transform: translate(-50%, -50%);
    max-width: 250px;
}

.uc-photo_error .uc-photo_error_arrow {
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    top: auto;
    bottom: -6px;
    left: 50%;
    transform: rotate(180deg) translateX(50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 7px solid rgba(254, 237, 237, 0.9);
}

.uc-email_error,
.uc-pass_error,
.uc-userName_error {
    display: inline-block;
    font-family: GlowRegular;
    font-size: 12px;
    color: #EC4A43;
    line-height: 16px;
}

.uc-userName_error {
    margin-left: 10px;
}

.errorInput {
    border: 1px solid #ec4a43 !important;
}

.uc-qrCode_section {
    text-align: center;
    padding-top: 24px;
}

.uc-qrCode_title {
    font-family: GlowSemibold;
    font-size: 16px;
    color: #36393e;
    margin-top: 20px;
}

.uc-qrCode_description {
    font-family: GlowRegular;
    font-size: 14px;
    color: #4a4a4a;
    margin-top: 3px;
}

.uc-linkedDevices_section {
    padding-top: 58px;
    padding-left: 36px;
    padding-right: 30px;
    height: 280px;
    position: relative;
}

.uc-linkedDevice {
    margin-bottom: 5px;
}

.uc-linkedDevices_title {
    font-family: GlowRegular;
    font-size: 12px;
    color: #36393e;
    padding-bottom: 10px;
}

.uc-linkedDevices_emptyList_title {
    font-family: GlowRegular;
    font-size: 14px;
    color: var(--input-placeholder-color);
}

.uc-linkedDevices_deviceName {
    font-family: GlowSemibold;
    font-size: 14px;
    color: #4a4a4a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 145px;
    float: left;
}

.uc-linkedDevices_deviceRegisteredAt {
    font-family: GlowRegular;
    font-size: 14px;
    color: var(--input-placeholder-color);
    padding-left: 4px;
    padding-right: 2px;
}

.uc-linkedDevicesList {
    height: 180px;
    overflow-x: hidden;
    overflow-y: auto;
    padding-top: 10px;
    padding-bottom: 10px;
}

.uc-deviceListBlurredTop, .uc-deviceListBlurredBottom {
    height: 10px;
    width: 100%;
    pointer-events: none;
    position: absolute;
}

.uc-deviceListBlurredTop {
    background: -webkit-linear-gradient( rgba(255, 255, 255, 1) 10%, rgba(255, 255, 255, 0) 100% );
    top: 85px;
}

.uc-deviceListBlurredBottom {
    bottom: 15px;
    background: -webkit-linear-gradient( rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 1) 100% );
}

.uc-buttons_section_mobile {
    bottom: 17px;
    left: 194px;
    position: absolute;
    height: 38px;
}

.uc-qrCode {
    width: 210px;
    height: 210px;
}

.uc-mobileBtn {
    background-image: url(../../images/shared/qr-code.svg);
    cursor: pointer;
    background-position: center;
    background-repeat: no-repeat;
    height: 16px;
    width: 16px;
    flex-shrink: 0;
}

.removeDeviceConfirmation-popup > .modal-dialog > .modal-content {
    height: 254px;
}

.convertingUserConfirmation-popup > .modal-dialog > .modal-content {
    height: 220px;
}

.mainInfoSection .userTags [hidden] {
    display: none !important;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

/* group capacity header columns */
.group-capacity .resource-capacity__header .resource-capacity__column {
    width: 80px;
    margin-right: 40px;
    text-align: right;
}

.group-capacity .resource-capacity__header .resource-capacity__column.column-0,
.group-capacity .resource-capacity__header .resource-capacity__column.column-1 {
    width: 174px;
    margin-right: 12px;
    text-align: left;
}
/* group capacity header columns */

/* group capacity body columns */
.group-capacity .resource-capacity__body .resource-capacity-unit__column {
    width: 108px;
    margin-right: 12px;
    text-align: right;
}

.group-capacity .resource-capacity__body .resource-capacity-unit__column.column-0,
.group-capacity .resource-capacity__body .resource-capacity-unit__column.column-1 {
    width: 168px;
    margin-right: 12px;
    text-align: left;
}
/* group capacity body columns */

.group-capacity .resource-capacity__header .resource-capacity__column:last-of-type {
    margin:0;
}

.group-capacity .resource-capacity__header .resource-capacity__column:last-child {
    margin:0;
}


.group-capacity .resource-capacity__header .resource-capacity__column:last-of-type,
.group-capacity .resource-capacity__body .resource-capacity-unit__column:last-child {
    margin: 0;
}

/* team capacity header columns */
.team-capacity .resource-capacity-team__header .resource-capacity-team__column {
    width: 96px;
    text-align: right;
    padding-right: 8px;
    margin-right: 40px;
}

.team-capacity .resource-capacity-team__header .resource-capacity-team__column.column-0 {
    width: 220px;
    margin-right: 28px;
    text-align: left;
}

.team-capacity .resource-capacity-team__header .resource-capacity-team__column:last-child {
    margin: 0
}

/* team capacity body columns */
.team-capacity .resource-capacity-team__body .resource-capacity-team-unit__column {
    width: 96px;
    margin-right: 28px;
    text-align: right;
}

.team-capacity .resource-capacity-team__body .resource-capacity-team-unit__column.column-0 {
    width: 250px;
    padding-left: 4px;
    text-align: left;
}

.team-capacity .resource-capacity-team__body .resource-capacity-team-unit__column:last-child {
    margin: 0;
}

.uc-userInfo__header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #DCDCDC;
    margin-bottom: 20px;
    padding: 20px;
}

.uc-header-avatar-user-info {
    display: flex;
    width: 100%;
    column-gap: 4px;
}

.uc-userEditForm__body {
    display: flex;
}

.uc-changePassInput_wrapper:not(:focus-within) .uc-input_cross {
    display: none;
}

.uc-resetPass_section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.uc-resetPass_section .uc-resetPass_body {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    padding: 0 32px;
}

.uc-resetPass_section .uc-resetPass_body .uc-resetPass_title {
    color: #4A4A4A;
    font-family: GlowSemiBold;
    font-size: 16px;
    text-align: center;
}

.uc-resetPass_section .uc-resetPass_body  .uc-resetPass_subtitle {
    color: #808080;
    font-size: 13px;
    text-align: center;
    padding: 0 20px;
}

.uc-resetPass_section .uc-resetPass_body .uc-resetPass-btn {
    margin-top: 32px;
    width: 165px;
    align-self: center;
}

.uc-resetPass_section .uc-resetPass_footer {
    color: #808080;
    font-size: 13px;
    cursor: pointer;
    text-align: center;
    position: absolute;
    bottom: 20px;
}

.uc-input_label.uc-internal-id {
    margin-left: 0;
}

.uc-input_value.uc-internal-id,
.uc-input.uc-internal-id {
    margin-left: -10px;
}