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

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

.f-body {
    background: none transparent;
}

#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;
}


.f-row {
    display: flex;
    flex-direction: row;
    margin: 10px;
    flex-wrap: wrap;
    flex-basis: 100%;
}

.f-column {
    display: flex;
    flex-direction: column;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 100%;
}

.f-container {
    width: 100%;
}


.f-score-item {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
    max-height: 50px;
    border: 1px solid lightgray;
    border-radius: 7px;
    padding: 20px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.f-profilImage {
    margin-top: 5px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

@media (min-width: 0px) {
    .f-placing {
        font-size: 24px;
    }

    .f-column {
        flex-basis: 100%;
    }

    .f-score-item {
        max-height: 50px;
    }

    .f-name {
        font-size: 16px;
        text-overflow: ellipsis;
    }

    .f-profilImage {
        margin-top: 5px;
        height: 30px;
        width: 30px;
    }
}


@media (min-width: 768px) {
    .f-placing {
        font-size: 24px;
    }

    .f-column {
        flex-basis: 50%;
    }

    .f-name {
        font-size: 16px;
    }


    .f-score-item {
        max-height: 70px;
    }

    .f-profilImage {
        margin-top: 5px;
        height: 30px;
        width: 30px;
    }
}

@media (min-width: 1280px) {
    .f-placing {
        font-size: 24px;
    }

    .f-column {
        flex-basis: 33%;
    }

    .f-score-item {
        max-height: 90px;
    }

    .f-name {
        font-size: 16px;
    }


    .f-profilImage {
        margin-top: 5px;
        height: 30px;
        width: 30px;
    }
}
