﻿body {
}

input[type=checkbox] {
    margin-left: 10px;
    min-width: 15px;
}

input[type=radio] {
    margin-left: 10px;
    min-width: 15px;
}

input[type=number] {
    width: 100px;
}

select {
    min-width: 130px;
}

.wj-flexgrid .wj-cell {
    display: flex;
    align-items: center;
}

    .wj-flexgrid .wj-cell.wj-align-right {
        justify-content: flex-end;
    }

    .wj-flexgrid .wj-cell.wj-align-center {
        justify-content: center;
    }

.wj-cell {
    text-align: center;
    align-content: center;
    /*height: 33px !important;*/
    /* justify-content: center;*/
   padding: 2px;
}


.wj-header {
    justify-content: center;
    text-align: center !important;
}


fieldset {
    display: inline-block;
    margin-inline-start: 2px;
    margin-inline-end: 2px;
    border: groove 1px ThreeDFace;
    padding-block-start: 5px;
    padding-inline-end: 5px;
    padding-block-end: 5px;
    padding-inline-start: 5px;
    min-inline-size: min-content;
    width: auto !important;
}

legend {
    display: block;
    width: auto;
    max-width: 100%;
    margin-bottom: 0rem;
    font-size: 1rem;
    color: inherit;
    white-space: normal;
}

.wj-listbox-item {
    min-height: 25px;
}
.tv-toast {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    text-align: center;
    border-radius: 2px;
    z-index: 1;
    margin: 0.1rem;
}

    .tv-toast.show {
        visibility: visible;
        -webkit-animation: tvfadein 0.5s, tvfadeout 0.5s 3s;
        animation: tvfadein 0.5s, tvfadeout 0.8s 2.6s;
    }

@-webkit-keyframes tvfadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 10px;
        opacity: 1;
    }
}

@keyframes tvfadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 10px;
        opacity: 1;
    }
}

@-webkit-keyframes tvfadeout {
    from {
        bottom: 10px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes tvfadeout {
    from {
        bottom: 10px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}
legend {
    width: auto;
    padding-inline-start: 0.5em;
    padding-inline-end: 0.5em;
    font-size: 100%;
    margin-bottom: 0;
    margin-left: 1.5em;
    background-color: lightcyan;
    border-radius: 2em;
    margin: 5px;
}

.required {
    color: red;
}