﻿/* color variables */
/* border radius */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* body {
            font-family: "Convergence", sans-serif;
            height: 100vh;
            display: grid;
            justify-content: center;
            align-items: center;
            font-size: 1.2rem;
            background-color: #060b23;
        } */

.form {
    position: relative;
    /*width: 20rem;*/
    height: 3rem;
    /*margin-top:20px;*/
}

.form__DropDownList {
    height: fit-content !important;
    padding: 12px !important;
    width: 94% !important;
    margin-left: 12px;
}

.form__input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #e1e5ee !important;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: inherit;
    color: black;
    outline: none;
    padding: 1.25rem;
    background: none;
    /* Change border when input focus*/
}

    .form__input :focus-visible, .form__input :focus-within, .form__input :focus {
        border: 2px solid #e1e5ee !important;
    }

.form__label {
    position: absolute;
    left: 1rem;
    top: 0.8rem;
    padding: 0 0.5rem;
    color: rgb(0, 0, 0);
    cursor: text;
    transition: top 200ms ease-in, left 200ms ease-in, font-size 200ms ease-in;
    background-color: #ffffff;
}

.control-label {
    font-size: 0.8rem !important;
    font-weight: 900 !important;
}
/* 1. When the input is in the focus state reduce the size of the label and move upwards 2. Keep label state when content is in input field */
.form__input:focus ~ .form__label,
.form__input:not(:placeholder-shown).form__input:not(:focus) ~ .form__label {
    top: -0.5rem;
    font-size: 0.8rem;
    left: 0.8rem;
}


input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s;
}
/*------------------------------------------------------------------------------------------------------*/



p.tree,
ul.tree,
ul.tree ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

    ul.tree ul {
        margin-left: 1.0em;
    }

    .tree-intro,
    ul.tree li {
        position: relative;
        margin-left: 0;
        padding-left: 1em;
        margin-top: 0;
        margin-bottom: 0;
        border-left: thin solid #e8e8e8;
    }

        ul.tree li:last-child {
            border-left: none;
        }

        ul.tree li:before {
            position: absolute;
            top: 0;
            left: 0;
            width: 0.5em; /* width of horizontal line */
            height: 0.5em; /* vertical position of line */
            vertical-align: top;
            border-bottom: thin solid #e8e8e8;
            content: "";
            display: inline-block;
        }

        ul.tree li:last-child:before {
            border-left: thin solid #e8e8e8;
        }

.filepond--credits {
    display: none;
}
