* {
    font-size: 12pt;
    font-family: monospace;
}
label {
    display: flex;
    width: 30%;
    align-items: center;
}
html {
    width: 100%;
    height: 100%
}
input#IsHiddenWifi.userinput {
    visibility: visible;
}
#checkboxbackground {
    display: flex;
    width: 100%;
    height: auto;
    background-color: rgb(238, 248, 252);

}
.important, .info {
    background-color: rgb(210, 255, 230);
}
#printButton, #urlPrintButton,
#printLabelButton, #urlPrintLabelButton {
    margin-top: 8px;
}
#IsHiddenWifi {
    accent-color: green;
}

body {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
}
input, #EncryptionType{
    height: 40px;
    width: 100%;
}
#submitbutton, #urlSubmitButton {
    width: 100%;
}
#qrcontainer, #urlqrcontainer {
    width: 100%;
    text-align: center;
}
div#qrcode img, div#urlqrcode img{
    display: inline !important;
}
.split-row {
    align-items: flex-start;
    width: 100%;
}
.split-column {
    flex: 1 1 0;
    display: flex;
    flex-flow: column wrap;
    min-width: 0;
}
.split-column .flex-item {
    width: 90%;
}
.split-divider {
    width: 1px;
    align-self: stretch;
    background-color: rgb(210, 230, 240);
    margin: 5px 0;
}
@media (max-width: 800px) {
    .split-row {
        flex-direction: column;
        align-items: center;
    }
    .split-divider {
        width: 90%;
        height: 1px;
        margin: 8px 0;
    }
}
.flex-container {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-flow: column wrap;
}
.row {
    width: auto;
    display: flex;
    justify-content: space-evenly;
}


.flex-item {
    display: flex;
    width: 50%;
    padding: 2px;
    margin: 5px;
    font-weight: bold;
    font-size: 2em;
    justify-content: flex-start;
    
}

@media (max-width: 800px) {
    .flex-item {
        width: 85%;
    }
}

@media (max-width: 500px) {
    .flex-item {
        width: 95%;
    }
    * {
        font-size: 10pt;
    }
}