html {
}

body {
    font-family: Arial;
    text-align: center;
    padding-top: 40px;
}

label {
    cursor: pointer;
}

.btn {
    border-radius: 8px;
    border-style: solid;
    border-width: 3px;
    text-decoration: none;
    padding: 8px;
}

    .btn.btn-primary {
        border-color: orange;
        background: linear-gradient(orange, #FFCC33);
        color: darkblue;
    }

a {
    text-decoration: none;
}

    a.image {
        border: 3px solid orange;
        display: inline-block;
        padding: 0px;
    }

#loginForm input[type="text"],
#loginForm input[type="password"] {
    width: 200px;
    padding: 2px 12px;
    font-size: 40px;
    border-radius: 12px;
}

input[type="submit"] {
    width: 100px;
    background-color: #5bf3e5;
    border: 1px solid #000;
    cursor: pointer;
    border-radius: 12px;
    color: #a18d6c;
    font-size: 40px;
}

.fixedheader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: aliceblue;
    color: orange;
    border-top: 3px solid orange;
    margin: 0px;
    height: 80px;
    padding: 0px;
    z-index: 2000;
}

    .fixedheader > .left {
        padding: 12px 0px 0px 20px;
    }

        .fixedheader > .left span.username {
            font-size: 50px;
        }
    .fixedheader > .left a, .fixedheader > .left a:visited {
    color:orange; 
    }

    .fixedheader > .right {
        padding: 20px 20px 0px 0px;
        font-size: 40px;
    }

    .fixedheader > .home {
        font-size: 50px;
    }

        .fixedheader > .home a:visited {
            color: orange;
        }

.fixedcontent {
    position: relative;
    margin-top: 75px;
}

.burrset {
    margin-top: 12px;
}

.burrDetails {
    width: 220px;
    height: 88px;
    background-color: lightblue;
    display: inline-block;
    font-size: 25px;
    text-align: center;
    padding-top: 12px;
    margin-right: 10px;
    border-radius: 12px;
    vertical-align: top;
    cursor: pointer;
}

    .burrDetails ul {
        margin: 12px 0px 0px 0px;
    }

.burrbox {
    display: inline-block;
    width: 700px;
    height: 100px;
}

.piece {
    display: inline-block;
    width: 100px;
    height: 100px;
    border-radius: 24px;
    font-size: 65px;
    text-align: center;
    padding: 0px;
    line-height: 100px;
}

.kleur_rood {
    background-color: red;
    color: orange;
}

.kleur_oranje {
    background-color: orange;
    color: yellow;
}

.kleur_geel {
    background-color: yellow;
    color: red;
}

.button {
    margin-top: 50px;
}

    .button a {
        font-size: 70px;
    }


.activestars {
    font-size: 70px;
    height: 88px;
    background-color: silver;
    border: 1px solid #666666;
    border-radius: 10px;
    margin: 0;
    padding-top: 10px;
}

.rating-stars ul {
    list-style-type: none;
    padding-left: 0;
    padding-right: 0;
}

    .rating-stars ul > li.star {
        display: inline-block;
    }

        /* Idle State of the stars */
        .rating-stars ul > li.star > i.fa {
            font-size: 1em; /* Change the size of the stars */
            color: #ccc; /* Color on idle state */
        }

        /* Initial  state of the stars */
        .rating-stars ul > li.star.started > i.fa {
            color: #FF332C;
        }

.rating-stars.default ul > li.star.started > i.fa {
    color: #ffffff;
}

.rating-stars.user ul > li.star.started > i.fa {
    color: red;
}

/* Selected state of the stars */
.rating-stars ul > li.star.selected > i.fa {
    color: #FF912C;
}

.left {
    float: left;
}

.right {
    float: right;
}

.clear {
    clear: both;
}

center {
    top: 0;
    position: absolute;
}