﻿@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

p {
    font-style: normal;
    font-size: 18px;
    line-height: 140%;
}
.div-message {
    border: 1px solid;
    border-radius: 10px;
    border-color: gold;
    padding: 3px;
    margin: 0px 2px;
    background-color: lightyellow;
}

.required:after {
    content: "*";
    color: red;
}

.error-message{
    color:red;
}

.content {
    padding-top: 1.1rem;
}

.height-100 {
    height: 820px;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

strong {
    font-size: 18px;
}

.link-a {
    color: blue;
    font-size: 18px;
}

svg {
    cursor: pointer;
    min-width: 16px;
}

    .link-a:hover {
        text-decoration: underline;
        color: blue;
    }


.white-button {
    background-color: white;
    color: black;
    border: none;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border: solid black 1px;
    border-radius: 7px;
}

    .white-button:hover {
        background-color: #424242;
        color: white;
    }

.green-button {
    background-color: #91F2A3;
    color: black;
    border: none;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 7px;
}

    .green-button:hover {
        background-color: #424242;
        color: #91F2A3;
    }


    .green-button:disabled,
    .green-button[disabled] {
        background-color: #B2BEB5;
        color: gray;
        opacity: 0.6;
        cursor:default;
    }

.black-button {
    background-color: #424242;
    color: white;
    border: none;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border: solid black 1px;
    border-radius: 7px;
}

    .black-button:hover {
        background-color: white;
        color: black;
    }

.header-text {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 120%;
    text-align: center;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }



::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px white;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: dimgray;
    border-radius: 10px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: black;
    }

.loader {
    font-size: 48px;
    color: black;
    display: inline-block;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    position: relative;
}

    .loader:after {
        content: 'Loading';
        position: relative;
        z-index: 5;
    }

    .loader:before {
        content: '';
        height: 15px;
        border: 1px solid;
        border-radius: 10px;
        width: 100%;
        position: absolute;
        bottom: 0px;
        top: 60px;
        background: linear-gradient(#8EECA0 100%, transparent 0) no-repeat;
        background-size: 0% auto;
        animation: 10s lineGrow linear infinite;
    }



@supports (-webkit-appearance: none) or (-moz-appearance: none) {
    .checkbox-wrapper-14 input[type=checkbox] {
        --active: #424242;
        --active-inner: #fff;
        --focus: 2px rgba(39, 94, 254, .3);
        --border: #424242;
        --border-hover: #424242;
        --background: #fff;
        --disabled: #424242;
        --disabled-inner: #424242;
        -webkit-appearance: none;
        -moz-appearance: none;
        height: 21px;
        outline: none;
        display: inline-block;
        vertical-align: top;
        position: relative;
        margin: 0;
        cursor: pointer;
        border: 1px solid var(--bc, var(--border));
        background: var(--b, var(--background));
        transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
    }

        .checkbox-wrapper-14 input[type=checkbox]:after {
            content: "";
            display: block;
            left: 0;
            top: 0;
            position: absolute;
            transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
        }

        .checkbox-wrapper-14 input[type=checkbox]:checked {
            --b: var(--active);
            --bc: var(--active);
            --d-o: .3s;
            --d-t: .6s;
            --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
        }

        .checkbox-wrapper-14 input[type=checkbox]:disabled {
            --b: var(--disabled);
            cursor: not-allowed;
            opacity: 0.9;
        }

            .checkbox-wrapper-14 input[type=checkbox]:disabled:checked {
                --b: var(--disabled-inner);
                --bc: var(--border);
            }

            .checkbox-wrapper-14 input[type=checkbox]:disabled + label {
                cursor: not-allowed;
            }

        .checkbox-wrapper-14 input[type=checkbox]:hover:not(:checked):not(:disabled) {
            --bc: var(--border-hover);
        }

        .checkbox-wrapper-14 input[type=checkbox]:not(.switch) {
            width: 21px;
        }

            .checkbox-wrapper-14 input[type=checkbox]:not(.switch):after {
                opacity: var(--o, 0);
            }

            .checkbox-wrapper-14 input[type=checkbox]:not(.switch):checked {
                --o: 1;
            }

        .checkbox-wrapper-14 input[type=checkbox] + label {
            display: inline-block;
            vertical-align:top;
            cursor: pointer;
            margin-left: 4px;
        }

        .checkbox-wrapper-14 input[type=checkbox]:not(.switch) {
            border-radius: 7px;
        }

            .checkbox-wrapper-14 input[type=checkbox]:not(.switch):after {
                width: 5px;
                height: 9px;
                border: 2px solid var(--active-inner);
                border-top: 0;
                border-left: 0;
                left: 7px;
                top: 4px;
                transform: rotate(var(--r, 20deg));
            }

            .checkbox-wrapper-14 input[type=checkbox]:not(.switch):checked {
                --r: 43deg;
            }

        .checkbox-wrapper-14 input[type=checkbox].switch {
            width: 38px;
            border-radius: 11px;
        }

            .checkbox-wrapper-14 input[type=checkbox].switch:after {
                left: 1px;
                top: 1px;
                border-radius: 50%;
                width: 17px;
                height: 17px;
                background: var(--ab, var(--border));
                transform: translateX(var(--x, 0));
            }

            .checkbox-wrapper-14 input[type=checkbox].switch:checked {
                --ab: var(--active-inner);
                --x: 17px;
            }

            .checkbox-wrapper-14 input[type=checkbox].switch:disabled:not(:checked):after {
                opacity: 0.6;
            }
}

.checkbox-wrapper-14 * {
    box-sizing: inherit;
}

    .checkbox-wrapper-14 *:before,
    .checkbox-wrapper-14 *:after {
        box-sizing: inherit;
    }

.loader-1 {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
    margin: 15px auto;
    position: relative;
    color: #424242;
    box-sizing: border-box;
    animation: animloader 2s linear infinite;
}

@keyframes animloader {
    0% {
        box-shadow: 14px 0 0 -2px, 38px 0 0 -2px, -14px 0 0 -2px, -38px 0 0 -2px;
    }

    25% {
        box-shadow: 14px 0 0 -2px, 38px 0 0 -2px, -14px 0 0 -2px, -38px 0 0 2px;
    }

    50% {
        box-shadow: 14px 0 0 -2px, 38px 0 0 -2px, -14px 0 0 2px, -38px 0 0 -2px;
    }

    75% {
        box-shadow: 14px 0 0 2px, 38px 0 0 -2px, -14px 0 0 -2px, -38px 0 0 -2px;
    }

    100% {
        box-shadow: 14px 0 0 -2px, 38px 0 0 2px, -14px 0 0 -2px, -38px 0 0 -2px;
    }
}

@keyframes lineGrow {
    to {
        background-size: 100% auto
    }
}

@media only screen and (max-width: 800px) {

    .header-text {
        font-family: 'Roboto';
        font-style: normal;
        font-weight: 700;
        font-size: 24px;
        line-height: 120%;
        text-align: center;
    }

    p{
        font-size:16px;
    }
}

@keyframes smokeOut {
    100% {
        opacity: 0.08;
    }
}