﻿
/*	---------------------------------------------------------------------------
	Standard Form
	--------------------------------------------------------------------------- */

.standardForm {
    text-align: left;
}

    .standardForm h2 {
        margin: 2rem 0 1rem 0;
    }

    .standardForm .row {
        margin: 0 0 1rem 0;
        position: relative;
        overflow: hidden;
    }

        .standardForm .row label {
            padding: .25rem 0;
            font-size: .8rem;
            font-weight: bold;
            display: inline-block;
        }

        .standardForm .row.required label:after {
            color: #cc0000;
            content: ' *';
        }

        .standardForm .row .description {
            padding: 0 0 .25rem 0;
            font-size: .6rem;
            display: block;
        }

        .standardForm .row.checkbox {
            display: flex;
            flex-direction: row-reverse;
            justify-content: start;
            gap: 10px;
            align-items: center;
        }
        .standardForm .row.checkbox label {
            cursor: pointer;
        }

    .standardForm input[type=text],
    .standardForm input[type=password],
    .standardForm select,
    .standardForm textarea {
        width: 100%;
        max-width: 800px;
        padding: .5rem .25rem;
        font-size: .75rem;
        display: block;
        background-color: #ffffff;
        border: solid 1px rgba(0,0,0,.25);
        box-sizing: border-box;
    }

    .standardForm .row.uploader input[type=file] {
        width: auto;
        display: inline-block;
    }


    .standardForm .row textarea {
        width: 100%;
        max-width: unset;
        min-height: 5rem;
    }

    .standardForm .row input[type=checkbox],
    .standardForm .row .checkbox input {
        width: auto;
        min-width: unset;
    }

    .standardForm .row.submit {
        margin: 2rem 0;
        padding: 1rem 0 0 0;
        text-align: center;
        border-top: solid 1px #dddddd;
    }

@media (max-width: 480px) {

    .standardForm fieldset input,
    .standardForm fieldset select,
    .standardForm fieldset textarea {
        width: 100%;
        max-width: unset;
        min-width: unset;
    }

        .standardForm fieldset input[type=checkbox],
        .standardForm fieldset .checkbox input {
            width: auto;
            max-width: unset;
            min-width: unset;
        }
}







input[type=range] {
    height: 38px;
    -webkit-appearance: none;
    margin: 10px 0;
    width: 100%;
    background: none;
    border: none;
}

    input[type=range]:focus {
        outline: none;
    }

    input[type=range]::-webkit-slider-runnable-track {
        width: 100%;
        height: 10px;
        cursor: pointer;
        background: #00a3d1;
        border-radius: 5px;
    }

    input[type=range]::-webkit-slider-thumb {
        box-shadow: 1px 1px 1px #000000;
        border: 1px solid #000000;
        height: 30px;
        width: 15px;
        border-radius: 5px;
        background: #FFFFFF;
        cursor: pointer;
        -webkit-appearance: none;
        margin-top: -11px;
    }

    input[type=range]:focus::-webkit-slider-runnable-track {
        background: #00a3d1;
    }

    input[type=range]::-moz-range-track {
        width: 100%;
        height: 10px;
        cursor: pointer;
        background: #00a3d1;
        border-radius: 5px;
    }

    input[type=range]::-moz-range-thumb {
        box-shadow: 1px 1px 1px #000000;
        border: 1px solid #000000;
        height: 30px;
        width: 15px;
        border-radius: 5px;
        background: #FFFFFF;
        cursor: pointer;
    }

    input[type=range]::-ms-track {
        width: 100%;
        height: 10px;
        cursor: pointer;
        animate: 0.2s;
        background: transparent;
        border-color: transparent;
        color: transparent;
    }

    input[type=range]::-ms-fill-lower {
        background: #3071A9;
        border: 1px solid #000000;
        border-radius: 10px;
        box-shadow: 1px 1px 1px #000000;
    }

    input[type=range]::-ms-fill-upper {
        background: #3071A9;
        border: 1px solid #000000;
        border-radius: 10px;
        box-shadow: 1px 1px 1px #000000;
    }

    input[type=range]::-ms-thumb {
        margin-top: 1px;
        box-shadow: 1px 1px 1px #000000;
        border: 1px solid #000000;
        height: 30px;
        width: 15px;
        border-radius: 5px;
        background: #FFFFFF;
        cursor: pointer;
    }

    input[type=range]:focus::-ms-fill-lower {
        background: #3071A9;
    }

    input[type=range]:focus::-ms-fill-upper {
        background: #3071A9;
    }
