﻿/*--------------------------------------------------------------
        Form Styles
--------------------------------------------------------------*/

.changeTitle {
}

.topHeading {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

    .topHeading h1 {
        padding: 20px 0px;
        font-size: 2rem;
    }

    .topHeading span {
        color: #007aff;
        font-size: 1.5rem;
    }

.section {
    padding: 10px 0px 10px;
}

    .section h2 {
        font-size: 1.6rem;
        font-weight: 400;
        color: #007aff;
    }

        .section h2:after {
            content: '';
            display: block;
            margin-top: .5rem;
            margin-bottom: 3rem;
            overflow: hidden;
            background: #007aff;
            height: 1px;
        }

    .section h3 {
    }

label {
    color: #646464;
    font-size: 1rem;
    margin-bottom: 0px !important;
}


.inputsInSection > div {
    margin-bottom: 20px;
}

.booleanDiv {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bottomRow {
    margin-top: 20px;
}

    .bottomRow div {
        display: flex;
        justify-content: center;
        max-height: 48px;
    }

.dateRange .formControl {
}

.mousePointer {
    cursor: pointer;
}


/*--------------------------------------------------------------
        Input Styles
--------------------------------------------------------------*/

.frosted-form {
    background-color: rgba(234, 234, 234, 0.10); /* Adjust the transparency with the last value */
    backdrop-filter: blur(6px); /* Adjust the blur intensity as desired */
    border: 1px solid #e9e9e9;
    padding: 20px 20px 20px 20px;
    border-radius: 10px;
}

.requiredMark {
    color: red;
}

.btn-link {
    text-decoration: none;
    color: #ff8500;
    margin-bottom: 0px;
    margin-left: -8px;
    margin-top: 0px;
    padding-bottom: 0px;
    padding-top: 0px;
}

input[type=text], input[type=date], input[type=email], input[type=date], input[type=number] {
    padding: 10px;
    border-radius: 10px;
    height: 42px;
    background-color: #f2f2f2;
}

.form-control {
    padding: 10px;
    border-radius: 10px;
    height: 42px;
    background-color: #f2f2f2;
}


    .form-control:focus {
        border-color: #007aff;
        border-radius: 10px;
        -webkit-box-shadow: none;
        outline: -webkit-focus-ring-color auto 0px;
        box-shadow: 0 0 15px 4px rgba(0,0,0,0.25);
    }


/*--------------------------------------------------------------
        Radio Button Styles
--------------------------------------------------------------*/

.radioDiv h3 {
    color: #646464;
    font-size: 1rem;
    text-align: left;
    margin-top: 0.1rem;
    margin-bottom: 0.3rem;
}

/*.radioButtonDiv {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    -webkit-user-select: none;*/ /* Safari */
    /*-ms-user-select: none;*/ /* IE 10 and IE 11 */
    /*user-select: none;
}*/

    /* Hide the actual radio buttons */
    /*.radioButtonDiv input[type="radio"] {
        display: none;
    }*/

    /* Style the labels to look like buttons */
    /*.radioButtonDiv label {
        display: inline-block;
        padding: 8px 15px;
        border: 1px solid #ccc;
        background-color: #ccc;
        color: black;
        border-radius: 10px;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }*/

    /* When the radio button is checked, change the appearance */
    /*.radioButtonDiv input[type="radio"]:checked + label {
        background-color: #1F487E;
        color: white;
    }*/

/*--------------------------------------------------------------
        Check Box Styles
--------------------------------------------------------------*/

.checkBoxField {
    text-align: left;
    margin-bottom: 0.5rem;
}

/* Hide the actual checkbox */
/*.checkBoxDiv input[type="checkbox"] {
    display: none;
}

    .checkBoxDiv input[type="checkbox"]:checked + label {
        background-color: #1F487E;
        color: white;
    }*/

.checkBoxDiv {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none;
}

    .checkBoxDiv h3 {
        color: #646464;
        font-size: 1rem;
        text-align: center;
        margin-top: 0.1rem;
        margin-bottom: 0.3rem;
    }

/*    .checkBoxDiv label {
        display: inline-block;
        padding: 8px 15px;
        border: 1px solid #ccc;
        background-color: #ccc;
        color: black;
        border-radius: 10px;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }*/

/*--------------------------------------------------------------
        Staged Inputs
--------------------------------------------------------------*/


.stagedInputsDiv {
    padding: 10px 0px 10px;
}

    .stagedInputsDiv h2 {
        font-size: 1.6rem;
        font-weight: 400;
        color: #ff8500;
        width: 100%;
    }

        .stagedInputsDiv h2:after {
            content: '';
            display: block;
            margin-top: .5rem;
            margin-bottom: 3rem;
            overflow: hidden;
            background: #ff8500;
            height: 1px;
        }

.container75 {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

    .container75 p {
        color: #ff8500;
    }



/*--------------------------------------------------------------
        Media Queries
--------------------------------------------------------------*/

@media (min-width: 768px) {
    .container75 {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .container75 {
        width: 75%;
    }
}

@media (min-width: 1200px) {
    .container75 {
        width: 75%;
    }
}

@media (max-width: 1100px) { /* Media Query to Revert the changes made above for mobile view*/
    .checkBoxDiv label {
        font-size: 9px;
        padding: 4px 7.5px;
    }

    .radioButtonDiv label {
        font-size: 9px;
        padding: 4px 15px;
    }
}

@media (max-width: 1200px) { /* Media Query Reverts the changes made above for mobile view*/
    .checkBoxDiv label {
        font-size: 12px;
        padding: 4px 7.5px;
    }

    .radioButtonDiv label {
        font-size: 12px;
        padding: 4px 7.5px;
    }
}

@media (max-width: 768.1px) { /* Media Query to Revert the changes made above for mobile view*/
    .checkBoxDiv label {
        font-size: 16px;
        padding: 8px 15px;
    }

    .radioButtonDiv label {
        font-size: 16px;
        padding: 8px 15px;
    }

    .frosted-form {
        background-color: none;
        backdrop-filter: none;
        border: none;
    }

    body {
        background-image: none;
    }
}
