﻿input, label, select, button {
    color: #6B809B;
}

    input:disabled {
        opacity: 0.7;
    }

    input[type="button"]:disabled {
        cursor: not-allowed;
        pointer-events: all !important;
    }

.controlheight {
    height: 50px;
}

/* Dialog */
/* Polyfill for Dialog on FF, Safari etc */
.no-dialog dialog {
    display: none;
}

    .no-dialog dialog[open] {
        display: block;
    }
/* FIM Dialog //////////////////////////////////////////////// */


.lower {
    text-transform: lowercase;
}

.upper {
    text-transform: uppercase;
}

.txt1, .drp1 {
    color: black;
}

.txt1 {   
    width: 100%;
    height: 35px;
    padding: 10px 15px 4px 15px;
    box-sizing: border-box;
}

.drp1 {
    width: 100%;
    height: 35px;
    padding: 6px 15px 4px 10px;
    box-sizing: border-box;
    border-radius: 5px;
}

/* Password */
.showpassvisible {
    background: url(images/icon-eye1.png) 5px 10px no-repeat;
}

.showpassinvisible {
    background: url(images/icon-eye2.png) 5px 10px no-repeat;
}
/* FIM Password //////////////////////////////////////////////// */


/* Dropdownlist */

.dropdownlist1 {    
    font-size: 15px;
    padding: 7px 10px;
    border-radius: 5px;
    background-color: white;
    border: 1px solid #6B809B;
}

.dropdownlist-floatlabel select {   
    border: 1px solid #6B809B;    
}

    .dropdownlist-floatlabel select:required:invalid + label:before {
        content: '*';        
    }

.dropdownlist-float {
    font-size: 13px;
    top: -45px;
    left: 10px;    
    position: relative;
    background-color: white;
    padding: 0 5px;
    box-sizing: border-box;
}
/* FIM Dropdownlist //////////////////////////////////////////////// */


/* Checkbox */
.chb1 {
    width: 20px;
    height: 20px;
    display: inline;
    vertical-align: middle;
    margin-top: -3px;
}

.chblabel1 {
    margin-left: 5px;
    color: #666;
}
/* Checkbox //////////////////////////////////////////////// */


/* Button */
.btn1 {
    border: 1px solid #6B809B;
    background-color: transparent;
    border-radius: 5px;
    display: inline-block;
    cursor: pointer;    
    font-size: 14px;
    text-decoration: none;    
}

    .btn1:hover {        
        background-color: #929daf;
        color: white;
    }

.btn2 {
    border: 1px solid #6B809B;
    background-color: #929daf; /*#f3f3f3*/
    border-radius: 5px;
    display: inline-block;
    cursor: pointer;
    color: white;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
    width: 100%;
    height: 100%;
}

    .btn2:hover {
        background-color: white;
        color: #6B809B;
    }

/* FIM Button //////////////////////////////////////////////// */


/* Switch */

.switch {
    font-size: 1rem;
    position: relative;
}

    .switch input {
        position: absolute;
        height: 1px;
        width: 1px;
        background: none;
        border: 0;
        clip: rect(0 0 0 0);
        clip-path: inset(50%);
        overflow: hidden;
        padding: 0;
    }

        .switch input + label {
            position: relative;
            min-width: calc(calc(2.375rem * .8) * 2);
            border-radius: calc(2.375rem * .8);
            height: calc(2.375rem * .8);
            line-height: calc(2.375rem * .8);
            display: inline-block;
            cursor: pointer;
            outline: none;
            user-select: none;
            vertical-align: middle;
            text-indent: calc(calc(calc(2.375rem * .8) * 2) + .5rem);
        }

            .switch input + label::before,
            .switch input + label::after {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: calc(calc(2.375rem * .8) * 2);
                bottom: 0;
                display: block;
            }

            .switch input + label::before {
                right: 0;
                border: 1px solid gray;
                background-color: lightgray; /*#dee2e6;*/
                border-radius: calc(2.375rem * .8);
                transition: 0.2s all;
            }

            .switch input + label::after {
                top: 2px;
                left: 2px;
                width: calc(calc(2.375rem * .8) - calc(2px * 2));
                height: calc(calc(2.375rem * .8) - calc(2px * 2));
                border-radius: 50%;
                background-color: white;
                transition: 0.2s all;
            }

        .switch input:checked + label::before {
            background-color: #024B9A; /*#08d;*/
        }

        .switch input:checked + label::after {
            margin-left: calc(2.375rem * .8);
        }

        .switch input:focus + label::before {
            outline: none;
            box-shadow: 0 0 0 0.2rem rgba(0, 136, 221, 0.25);
        }

        .switch input:disabled + label {
            color: #868e96;
            cursor: not-allowed;
        }

            .switch input:disabled + label::before {
                background-color: #e9ecef;
            }

    .switch.switch-sm {
        font-size: 0.875rem;
    }

        .switch.switch-sm input + label {
            min-width: calc(calc(1.9375rem * .8) * 2);
            height: calc(1.9375rem * .8);
            line-height: calc(1.9375rem * .8);
            text-indent: calc(calc(calc(1.9375rem * .8) * 2) + .5rem);
        }

            .switch.switch-sm input + label::before {
                width: calc(calc(1.9375rem * .8) * 2);
            }

            .switch.switch-sm input + label::after {
                width: calc(calc(1.9375rem * .8) - calc(2px * 2));
                height: calc(calc(1.9375rem * .8) - calc(2px * 2));
            }

        .switch.switch-sm input:checked + label::after {
            margin-left: calc(1.9375rem * .8);
        }

    .switch.switch-lg {
        font-size: 1.25rem;
    }

        .switch.switch-lg input + label {
            min-width: calc(calc(3rem * .8) * 2);
            height: calc(3rem * .8);
            line-height: calc(3rem * .8);
            text-indent: calc(calc(calc(3rem * .8) * 2) + .5rem);
        }

            .switch.switch-lg input + label::before {
                width: calc(calc(3rem * .8) * 2);
            }

            .switch.switch-lg input + label::after {
                width: calc(calc(3rem * .8) - calc(2px * 2));
                height: calc(calc(3rem * .8) - calc(2px * 2));
            }

        .switch.switch-lg input:checked + label::after {
            margin-left: calc(3rem * .8);
        }

    .switch + .switch {
        margin-left: 1rem;
    }
/* FIM Switch //////////////////////////////////////////////// */


/* Float Label */

label-float {

}

.label-float input {
    border: 1px solid #6B809B;    
    outline: none;    
    transition: all .1s linear;
    -webkit-transition: all .1s linear;
    -moz-transition: all .1s linear;
    -webkit-appearance: none;    
    font-size: 15px;
    border-radius: 5px;
    background-color: white;    
}

    .label-float input:focus {
        
    }

.label-float label {
    pointer-events: none;
    position: relative;
    top: -27px;
    left: 10px;
    transition: all .1s linear;
    -webkit-transition: all .1s linear;
    -moz-transition: all .1s linear;
    background-color: white;
    padding: 0 5px;
    box-sizing: border-box;
    font-size: 15px;
}

.label-float input:required:invalid + label {
    
}

.label-float input:focus:required:invalid {
    
}

.label-float input:required:invalid + label:before {
    content: '*';        
}

.label-float input:focus + label,
.label-float input:not(:placeholder-shown) + label {
    font-size: 13px;
    top: -45px;    
}

/* FIM Float Label //////////////////////////////////////////////// */



/* AutoComplete */

.autocomplete {
    /*the container must be positioned relative:*/
    position: relative;
    display: inline-block;
}

.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 70%;
    left: 0;
    right: 0;
    /*width: calc(100% - 10px);*/
    box-sizing: border-box;
}

    .autocomplete-items div {
        padding: 10px;
        cursor: pointer;
        background-color: #fff;
        border-bottom: 1px solid #d4d4d4;
    }

        .autocomplete-items div:hover {
            /*when hovering an item:*/
            background-color: #e9e9e9;
        }

.autocomplete-active {
    /*when navigating through the items using the arrow keys:*/
    background-color: DodgerBlue !important;
    color: #ffffff;
}

/* */
