
html { 
    height: 100%;
}
html, body, input, button, select, option, textarea {
    font-family: Helvetica;
}
body {
    font-size: 100%; /* whatever base font size I want */
}
input, button, select, option, textarea {
    font-size: 100%;
}

.myButton, .b, a {
	-moz-box-shadow:inset 0px 1px 3px 0px #91b8b3;
	-webkit-box-shadow:inset 0px 1px 3px 0px #91b8b3;
	box-shadow:inset 0px 1px 3px 0px #91b8b3;
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #768d87), color-stop(1, #6c7c7c));
	background:-moz-linear-gradient(top, #768d87 5%, #6c7c7c 100%);
	background:-webkit-linear-gradient(top, #768d87 5%, #6c7c7c 100%);
	background:-o-linear-gradient(top, #768d87 5%, #6c7c7c 100%);
	background:-ms-linear-gradient(top, #768d87 5%, #6c7c7c 100%);
	background:linear-gradient(to bottom, #768d87 5%, #6c7c7c 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#768d87', endColorstr='#6c7c7c',GradientType=0);
	background-color:#768d87;
	border:1px solid #566963;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	padding:3px 5px;
        margin: 1px;
	text-decoration:none;
	text-shadow:0px -1px 0px #2b665e;
}
.myButton:hover,.b:hover, a:hover {
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #6c7c7c), color-stop(1, #768d87));
	background:-moz-linear-gradient(top, #6c7c7c 5%, #768d87 100%);
	background:-webkit-linear-gradient(top, #6c7c7c 5%, #768d87 100%);
	background:-o-linear-gradient(top, #6c7c7c 5%, #768d87 100%);
	background:-ms-linear-gradient(top, #6c7c7c 5%, #768d87 100%);
	background:linear-gradient(to bottom, #6c7c7c 5%, #768d87 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#6c7c7c', endColorstr='#768d87',GradientType=0);
	background-color:#6c7c7c;
}
.myButton:active,.b:active,a:active {
	position:relative;
	top:1px;
}


/* popup ... */
#popuptext, #topmsg {
    display: none;
    width: 160px;
    height:fit-content;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 8px;
    position: absolute;
    z-index: 200;
}
/* Popup arrow */
#popuptexttest::after {
    content: "";
    position: absolute;
    top: -15px;
    left: 20px;
    margin-left: -4px;
    border-width: 8px;                
    border-style: solid;
    border-color: transparent transparent #555   transparent;
}
.popuptexttop::after {
    border-color:  #555  transparent transparent transparent;
    top:0;
}            
.pilibund::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 20px;
    margin-left: -4px;
    border-width: 8px;                
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}
.pilitop::after {
    content: "";
    position: absolute;
    top: -15px;
    left: 20px;
    margin-left: -4px;
    border-width: 8px;                
    border-style: solid;
    border-color: transparent transparent #555   transparent;
}
#topmsg {
    position: fixed;
    top:0;
    right:20%;
    width: 30%;
    z-index: 9999;
 }            
 .hide {
     display: none;
 }
 ul { list-style-type: none; margin: 0; padding: 0; }
.valgikon {
    /*s� knappen ikke �ndrer h�jde*/
    line-height: 10px;  
}

/* tooltip*/
.ui-tooltip {    
    background-color: #555;
    color: #fff;
    border: 0px none red;
    font-size: smaller;
    box-shadow: none;
    z-index: 100;
}

/*opgaver */
.opgave {
    display: flex;
}

.bogstav {
    display: inline-block;
    font-size: x-small;
    font-family: "Times new roman";
    background-color:#A2BFF4;
    color: #111;
    border: 2px solid #111;
    min-width: 1em;
    padding: 1px 1px 0 1px;
    text-align: center;
    margin: auto;
}
.bogstavcol {
    display: inline-block;
    min-width: 2em;
    text-align: center;
}
.opgbeskriv {
    display: inline-block;
}


[placeholder]:empty:before{
    content: attr(placeholder);
    opacity: 0.7;
}

    #brugerinfo  form, #brugerinfo #loggetind {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
    #brugerinfo  input {
        width: 20em;
    }
    #aliasspil {
        max-width: fit-content;
        width: fit-content;
        min-width: 3em;
        float: right;
        background-color: whitesmoke;
        margin-left: 3px;
    }


    #version {
        float: right
    }

    button {
        -webkit-transition: all .2s ease-in-out;
    }
    button:focus {
        outline:0;
        transform: scale(1.05);
    }

    .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
       float: none;
         text-align: center; /* left/center/right */
    }

    #serverfejl {
        border: blueviolet 5px solid;
        margin: 2em;
        font-size:xx-large;
    }
    .skjult {
        display: none !important;
    }
    
    #navigation {
        display:inline-block;
    }
    #holdlinks {
        display:inline-block;
        background-color:#d2dceb;
        padding: 2px;
    }
    #submitButton {
        transform: scale(1);
        animation: pulse 2s infinite;
    }
    #loggetind {
        background-color: rgb(0 0 0 / 0.1);
    }

    
    @keyframes pulse {
        0% {
            transform: scale(0.90);
        }
        70% {
            transform: scale(1);
        }

        100% {
            transform: scale(0.90);
        }
    }

    .overskrift {
        font-size: larger;
        font-weight: bold;
        margin-top: 5px;
    }


