body {
    position: relative;
    font-family: 'LotaGrotesque', sans-serif;
}

a:link, a:visited {
    color: #3d6051;
}

dialog {
    margin: auto;
    border: 1px solid gray;

    .cls-dia {
        position: absolute;
        cursor: pointer;
        top: 8px;
        right: 12px;

        &::after {
            content: '\02715';
        }
    }

    .input-wrap {
        display: block;

        span {
            display: block;
        }

        input {
            padding: 4px 6px 2px;
        }
    }

    .button-pane {
        display: flex;
        margin-top: 14px;

        button {
            cursor: pointer;
            padding: 2px 12px;

            &.confirm {

            }

            &.cancel {

            }

            &:disabled {
                cursor: default;
            }
        }
    }
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.inloggad {
    position: absolute;
    display: flex;
    justify-content: space-between;
    height: 42px;
    min-width: 170px;
    font-size: 17px;
    color: #3d6051;
    font-family: 'Arial', 'Helvetica', sans-serif;
    transition: color, opacity 900ms linear;
    padding: 2px 6px;
    opacity: 0.66;
    top: 4px;
    right: 16vw;
    cursor: pointer;

    span {
        display: block;

        &.prem {
            font-size: 11px;
            color: #0b1c0b;
            letter-spacing: 0.05rem;
        }

        &.u_name {
            display: inline-block;
            font-family: 'LotaGrotesque', sans-serif;
            max-width: 242px;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
            font-weight: 500;
            line-height: 18px;
        }
    }

    img {
        height: 100%;
        padding: 9px 8px 7px;
        opacity: 0.5;
        transition: opacity 900ms linear;
        margin-left: 8px;
    }

    &:hover {
        color: #2a472f;
        opacity: 0.9;

        img {
                opacity: 0.9;
            }
    }
}

.content-wrap {
    display: flex;
    justify-content: center;
    padding-bottom: 100px;

    .inner-wrap {
        max-width: 98vw;
    }
}

@media only screen and (max-width: 1800px) {
    .inloggad {
        right: calc((100vw - 1180px) / 2)
    }
}

@media only screen and (max-width: 1210px) {
    .inloggad {
        right: 8px;
    }
}
