﻿.dropDownListItem {
    background-color: var(--secondaryColorLight);
}

    .dropDownListItem:hover {
        background-color: var(--secondaryColor);
    }

    .dropDownListItem:active {
        background-color: var(--secondaryColorDark);
    }

.vteButton {
    background-color: white;
    border: none;
    color: white;
    padding-top: 6px;
    /*padding-bottom: 6px;*/
    font-size: 12px;
    cursor: pointer;
    color: black;
    width: 60px;
    height: 50px;
    padding: 0px;
}

    .vteButton:hover {
        background-color: #F4F4F4;
        color: #03A9F4;
    }

    .vteButton:focus {
        background-color: #F4F4F4;
        outline: none;
    }

    .vteButton:active {
        background-color: #B3B3B3;
    }

    .vteButton:disabled, .vteButton:disabled:hover {
        background-color: white;
        border-color: var(--secondaryColor);
        color: var(--secondaryColor);
        cursor: default;
    }

.vteToggleButtonChecked {
    border: none;
    background-color: white;
    /*color: #03A9F4;*/
    color: #03A9F4;
    padding-top: 6px;
    padding-bottom: 6px;
    /*font-size: 12px;
    cursor: pointer;
    color: black;
    width: 60px;
    height: 50px;
    padding: 0px;*/
}

.OSButton {
    background-color: white;
    border: 0px solid #231f20;
    color: white;
    font-size: 12px;
    cursor: pointer;
    color: black;
    width: 54px;
    height: 54px;
    border-radius: 12px;
    box-shadow: 0px 1px 6px rgba(0,0,0,0.16) !important;
}

    .OSButton:hover {
        background-color: #F4F4F4;
        color: #03A9F4;
    }

    .OSButton:focus {
        background-color: #F4F4F4;
        outline: none;
    }

    .OSButton:active {
        background-color: #B3B3B3;
    }

.vteSimpleButton {
    background-color: transparent;
    border: none;
    color: white;
    padding-top: 6px;
    font-size: 12px;
    cursor: pointer;
    color: black;
    width: 30px;
    height: 30px;
}

    .vteSimpleButton:hover {
        color: #03A9F4;
    }


.OSSimpleButton {
    height: 28px;
    width: 100px;
    border-radius: 15px;
    background-color: var(--primaryColor);
    color: white;
    border-color: transparent;
    font-size: 1.2rem;
}

    .OSSimpleButton:hover {
        background-color: var(--primaryColorDark);
    }

.sr-only {
    sr-only position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 4px 8px 16px 4px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/*Numeric UpDown*/
.comboBox {
    height: 30px;
    width: 100%;
    border-radius: 0px;
    font-size: 13px !important;
    /*margin-top: 5px;*/
    border-color: var(--secondaryColor);
}

.upDownGrid {
    display: grid;
    grid-template-columns: auto 35px 35px;
}

.inputStyle {
    border-color: var(--secondaryColor);
    text-align: end;
    padding-right: 5px;
    border-style: solid;
}

    .inputStyle:focus {
        border-color: var(--primaryForeGroundColor);
    }

.guiButton {
    background: var(--secondaryColorLight) !important;
    border-color: var(--primaryColor) !important;
    color: var(--secondaryColorDark) !important;
    border-style: solid !important;
    height: 30px !important;
}

    .guiButton:hover {
        color: var(--primaryColor) !important;
    }

    .guiButton:disabled {
        border-color: var(--secondaryColor) !important;
        color: var(--secondaryColor) !important;
    }

    .guiButton:active {
        background: var(--secondaryColorDark) !important;
    }

/*Integer Text Box*/
.integerTextBoxStyle {
    border-color: var(--secondaryColor);
    padding: 5px;
    border-style: solid;
    border-width: 1px;
    height: 31px;
    width: 100%;
}

    .integerTextBoxStyle:focus {
        border-color: var(--primaryForeGroundColor);
    }

/*Slide checkbox style*/
.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--lightGray);
    -webkit-transition: .4s;
    transition: .4s;
}



    .slider:before {
        position: absolute;
        content: "";
        height: 16px;
        width: 16px;
        left: 2px;
        bottom: 2px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:disabled + .slider {
    opacity: 0.3;
    /*background-color: green;*/
}

input:checked + .slider {
    background-color: var(--blue);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--blue);
}

input:checked + .slider:before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 10px;
}

    .slider.round:before {
        border-radius: 50%;
    }




/* Normal Checkbox style*/

/* The container */
.containerCB {
    display: block;
    position: relative;
    /*margin-bottom: 12px;*/
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 16px;
    height: 13px;
}

    /* Hide the browser's default checkbox */
    .containerCB input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkmarkNormal {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: var(--lighterGray);
    border-radius: 2px;
    border-color: var(--blue);
    border-width: 1px;
    border-style: solid;
}

.checkmarkDisabled {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: var(--lighterGray);
    border-radius: 2px;
    border-color: var(--lightGray);
    border-width: 1px;
    border-style: solid;
    cursor: default;
}

/* On mouse-over, add a grey background color */
.containerCB:hover input ~ .checkmarkNormal {
    border-width: 2px;
}

.containerCB:hover input ~ .checkmarkDisabled {
}

/* When the checkbox is checked, add a blue background */
.containerCB input:checked ~ .checkmarkNormal {
    background-color: var(--blue);
    border-color: var(--blue);
}

.containerCB input:checked ~ .checkmarkDisabled {
    background-color: var(--ligtherGray);
    border-color: var(--lightGray);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmarkNormal:after {
    content: "";
    position: absolute;
    display: none;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmarkDisabled:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.containerCB input:checked ~ .checkmarkNormal:after {
    display: block;
}

.containerCB input:checked ~ .checkmarkDisabled:after {
    display: block;
}

/* Style the checkmark/indicator */
.containerCB .checkmarkNormal:after {
    left: 4px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Style the checkmark/indicator */
.containerCB .checkmarkDisabled:after {
    left: 4px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Paragraphs*/
.text-error {
    color: #dc3545 !important;
    font-size: medium;
    font-weight: bold;
}

.pathItem {
    cursor: pointer;
}

    .pathItem:hover {
        background-color: #D9D9D9;
    }
