body {
    font-family: Arial;
    font-size: 14px;
}

a:link,
a:visited,
a:hover {
    text-decoration: none;
}

label[for] {
    cursor: pointer;
}

/*label[for]:after {*/
/*    content: "\A";*/
/*    white-space: pre;*/
/*}*/

.navbar {
    margin-bottom: 20px;

    -ms-user-select: None;
    -moz-user-select: None;
    -webkit-user-select: None;
}

/*@media (max-width: 600px) {*/
/*    .navbar {*/
/*        display: none !important;*/
/*    }*/
/*}*/

.navbar div {
    color: #FFFFFF;
    background-color: #179FDB;
    border: 1px solid #0069B4;
    display: inline-block;
    padding: 10px;
    margin-right: 5px;
    cursor: pointer;
    transition: 0.5s all;
}

.navbar div:hover {
    color: #0069B4;
    background-color: #A7CBEB;
    border: 1px solid #0069B4;
    transition: 0.5s all;
}

.checkboxWithLabel {
    display: inline-block;
}

#thisPageQR {
    position: fixed;
    bottom: 10px;
    right: 10px;
}

#thisPageQR input {
    display: none;
}

#thisPageQR img {
    width: 60px;
    border: 1px solid #000000;
    opacity: 0.4;
    transition: 1s all;
}

#qrCheck:checked ~ label img {
    width: 300px;
    max-width: 100%;
    border: 6px solid #000000;
    opacity: 1;
    transition: 1s all;
}