﻿
/* Customize the label (the container) */
.v8CheckBoxItem {
    position: relative;
    padding-left: 25px;
    margin-left: 0;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin:0;
}

    .v8CheckBoxItem:disabled {
        color: #dddddd;
    }
    /* Hide the browser's default checkbox */
    .v8CheckBox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
    border-radius: 4px;
}
.floatingCheckboxesContainer {
    float: left;
    max-width: 390px;
    border-top: 1px solid var(--StandardBorder);
    border-bottom: 1px solid var(--StandardBorder);
    padding: 5px 0;
    margin: 5px 0;
}
.floatingCheckboxesContainer
.v8CheckBoxItem {
    float:left;
    margin:3px 4px 3px 5px;
}

.v8CheckBox:disabled {
    background-color: var(--LightGrey);
}
.v8CheckBoxItemLabel {
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 6px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-weight: normal;
    display: inline-block;
    cursor: pointer;
    max-width: 610px;
}


.tree-child-group
.v8CheckBoxItem {
    float: left;
    white-space: nowrap;
    width: 400px;
}

.v8-setup-columns
.tree-child-group
.v8CheckBoxItem {
    width: 310px;
}

.tree-child-group
.v8CheckBoxItemLabel {
    width: 330px;
}
.v8-setup-columns
.tree-child-group
.v8CheckBoxItemLabel {
    width: 240px;
}

    .v8CheckBoxItemLabel.long {
        max-width: 100%;
        white-space: normal;
        overflow: visible;
    }


    .v8CheckBoxItemLabel:disabled {
        color: var(--LightGrey);
    }
.v8CheckBoxItemLabel-NoSelect {
    font-size: 14px;
    line-height: 16px;
    white-space: nowrap;
    font-weight: normal;
    display: inline-block;
    color: var(--color-fg-default);
    margin-left:25px;
}
.noWidthRestrictionLabel {
    overflow: visible;
}

.noListLabel {
    margin-bottom: 4px;
}
    .noListLabel
    .material-icons {
        margin-top:2px;
    }
.noWidthLabel {
    width:auto;
}
/* Create a custom checkbox */
.v8CheckMark {
    position: absolute;
    top: 0;
    border-radius: 4px;
    left: 0;
    height: 16px;
    width: 16px;
    border: solid 1px var(--DarkGreen);
}

.v8CheckMark:disabled {
    background-color: var(--LightGrey);
}
/* On mouse-over, add a grey background color */
.v8CheckBoxItem:hover input ~ .v8CheckMark {
    background-color: var(--LighterGrey);
}

/* When the checkbox is checked, add a blue background */
.v8CheckBoxItem input:checked ~ .v8CheckMark {
    background-color: var(--DarkGreen);
}

/* Create the v8CheckMark/indicator (hidden when not checked) */
.v8CheckMark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the v8CheckMark when checked */
.v8CheckBoxItem input:checked ~ .v8CheckMark:after {
    display: block;
}

/* Style the v8CheckMark/indicator */
.v8CheckBoxItem .v8CheckMark:after {
    left: 5px;
    top: 0;
    width: 5px;
    height: 10px;
    border: solid var(--Background);
    border-width: 0 1px 1px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}



/* Create a custom radiobutton */
.v8RadioMark {
    position: absolute;
    top: 0;
    border-radius: 12px;
    left: 0;
    height: 16px;
    width: 16px;
    border: solid 1px var(--DarkGreen);
}

    .v8RadioMark:disabled {
        background-color: var(--LightGrey);
    }
/* On mouse-over, add a grey background color */
.v8CheckBoxItem:hover input ~ .v8RadioMark {
    background-color: var(--LighterGrey);
}

/* When the checkbox is checked, add a blue background */
.v8CheckBoxItem input:checked ~ .v8RadioMark {
    background-color: var(--DarkGreen);
}

/* Create the v8CheckMark/indicator (hidden when not checked) */
.v8RadioMark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the v8CheckMark when checked */
.v8CheckBoxItem input:checked ~ .v8RadioMark:after {
    display: block;
}

/* Style the v8CheckMark/indicator */
.v8CheckBoxItem .v8RadioMark:after {
    left: 5px;
    top: 0;
    width: 5px;
    height: 10px;
    border: solid var(--Background);
    border-width: 0;
}

.v8CheckBoxItemSmall {
    left: 4px;
    top: 2px;
    width: 2px;
    height: 4px;
    border: solid var(--DarkGreen);
    border-width: 0 1px 1px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


label:disabled {
    background: #dddddd;
}
.inputEmail {
    border-radius:5px;
    padding:10px 15px;
    font-size:16px;
    width: 100%;
}

.inputEnterName {
    width: 100%;
}

.inputTextSearch {
    width: 100%;
    font-size:14px;
}

.formHeader {
    min-width: 210px;
}
.numericDropdown {
    width: 80px;
    height: 24px;
    display: inline-block;
}

    .numericDropdown
    select, option {
        padding: 4px;
        width: 100px;
    }

.batchSearchTextInput {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 400px;
    max-height:120px;    
    margin:5px 0;
    border-radius:5px;
    padding:5px;
    font-size:14px;
}

.rangeSelect {
    text-align: left;
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 0px;
    color: var(--color-fg-default);
    background: var(--color-bg-input);
    width: 150px;
    margin: 0 5px 5px 0;
}
.filterSubHeader {
    text-align: left;
    margin: 15px 0 5px 0;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0px;
    width: 100%;
}
.rangeSelectMinMaxLabel {
    margin-bottom: 4px;
    text-align: left;
    font-size: 12px;
    letter-spacing: 0px;
    width: 100%;
}
.rangeMinMaxValueBox {
    position:relative;
    border-radius: 10px;
    padding: 8px;
    height: 40px;
    width: 100%;
    border: var(--LightGrey) 1px solid;
}
.minMaxInput
input {
    outline:none;
    float: left;
    width:100%;
    border: none;
}
.minMaxCurrencyText {
    padding:1px;
    position:absolute;
    right:5px;
    text-align: right;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0px;
    color: var(--ActiveText);
    background:var(--Background);
}
.booleanFilterContainer {
    margin: 10px 0;
    display: inline-block;
}
.genericDropdownLabel {
    font-size: 14px;
    margin-right: 5px;
    cursor: pointer;
}

.genericDropdown {
    outline: none;
    border-radius: 10px;
    font-size: 12px;
    margin-right: 10px;
    padding: 5px;
    border-width: 1px;
}
    .genericDropdown.disabledDropDown {
        opacity: 0.5;
        pointer-events: none;
    }
.commentTextArea {
    border: 1px solid var(--StandardBorder);
    border-radius:5px;
    margin:5px 0;
    padding:5px 7px;
    width:100%;
}

label.checkBoxHeaderLabel {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 0.9;
}
.v8CheckBoxItem.selectListCheckbox {
    margin-top: 13px;
    height: 20px;
}
.contentInputRow    { 
    padding :2px 0;}
.contentInputRow
label {
    font-weight: bold;
}

.contentInputItem {
    float: left;
    width: 200px;
    margin-bottom:20px;
    margin-right:20px;
}

.contentInputLabel {
    margin-bottom: 4px;
    text-align: left;
    font-size: 12px;
    letter-spacing: 0px;
    width: 100%;
}

.contentInputValueBox {
    position: relative;
    border-radius: 10px;
    height: 36px;
    width: 100%;
    border: var(--LightGrey) 1px solid;
}
.contentInputRow
input {
    outline: none;
    width: 100%;
    padding: 8px 5px 7px 5px;
    border-radius: 10px;
    border: none;
    border: 1px solid transparent;
}

.contentInputValueBoxNumericalInput
input {
    outline: none;
    float: right;
    text-align: right;
    width: 100%;
    padding: 8px 50px 7px 5px;
    border-radius: 10px;
    border: 1px solid transparent;
}

.contentInputCurrencyText {
    padding: 9px 0 7px 0;
    position: absolute;
    right: 5px;
    text-align: left;
    width: 40px;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0px;
    color: var(--ActiveText);
}

.contentInputTextArea {
    border: 1px solid var(--LightGrey);
    border-radius: 5px;
    margin: 5px 0;
    padding: 5px 7px;
    width: 100%;
}
textarea.contentInputTextArea 
{
    outline: none;
    overflow: auto;
    resize: vertical;
}

textarea.contentInputTextArea:focus {
    border: 1px solid var(--AccentedBorder);
    outline: none;
}

.contentInputCategoryContainer {
    float: left;
    width: 100%;
    padding: 0px;
    margin-bottom: 10px;
}
.contentInputCategoryHeading {
    font-size: 16px;
    border-bottom: 1px solid var(--StandardBorder);
    margin-bottom: 10px;
    padding-bottom: 5px;
}
.contentInputGroup {
    border-radius: 5px;
    background-color: var(--HighlightedBackground);
    float: left;
    border: 1px solid var(--StandardBorder);
    padding: 5px;
    margin-bottom:10px;
}
.contentInputORItem {
    padding: 5px;
    float: left;
    margin: 30px 15px 0 15px;
    border-radius: 5px;
    height: 100%;
    background-color: var(--WarmGreen);
    color: var(--ButtonText);
    border: 1px solid var(--ActiveGreen);
}
.contentInputGroup
.contentInputItem {
    margin:5px;
}

.form-check {
    padding-left: 0px;
    max-width: 270px;
}


.disabledLabel {
    color: var(--DarkGrey);
    cursor: default;
}