html {
	font-family: "Lucisa Sans", sans-serif;
}

h1 {
    margin: 0;
}

a {
	color: blue;
}

* {
    box-sizing: border-box;
}

[class*="col-"] {
    float: left;
}

.row::after {
    content: "";
    clear: both;
    display: table;
}

.nobr {
    white-space: nowrap;
}

form table {
    width: 100%;
}

form table th {
    text-align: left;
    vertical-align: top;
    width: 1%;
    white-space: nowrap;
}

form input, form textarea {
    width: 100%;
    max-width: 400px;
}

form input[type="checkbox"], form input[type="radio"] {
    width: auto;
}

form textarea {
    height: 200px;
}

form input[type="submit"] {
    width: auto;
}

.errors {
    color: red;
}

.messages {
    color: green;
}

.radius {
    border-radius: 3px;
    border: 1px solid #eeeeee;
    padding: 1em;
    margin: 0.3em;
}

.radius2 {
    border-radius: 5px;
    border: 1px solid #dddddd;
    padding: 1em;
}

.table .head {
    background: #cccccc;
}

.even {
    background: #eeeeee;
}

.even:hover, .odd:hover {
    background: #dddddd;
}

.table td, .table th {
    padding: 4px;
}

.admin .dropdown {
    display: block;
    margin-top: -0.3em;
    position: relative;
    float: right;
    z-index: 1;
}

.actions {
    display: none;
    position: absolute;
    background: white;
    min-width: 160px;
    /*box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);*/
    padding: 1em;
    z-index: 2;
    right: 0;
    margin-top: -1em;
    border: 1px solid #cccccc;
}

.dropdown:hover .actions {
    display: block;
}

.admin {
    /*
    border: 1px solid #eeeeee;
    */
}

.dropdown, .admin .webpart .dropdown {
    display: none;
}

.actions a {
    display: block;
    padding: 0.4em;
}

.actions a:hover {
    background: #eeeeee;
}

@media only screen and (max-width: 599px) {

    [class*="col-"] {
        width: 100%;
    }

    .mobilehide {
        display: none;
    }
}

@media only screen and (min-width: 600px) {

    .col-1 {
        width: 25%;
    }
    
    .col-2 {
        width: 50%;
    }
    
    .col-3 {
        width: 75%;
    }
    
    .col-4 {
        width: 100%;
    }
    
    .onlymobile {
        display: none;
    }
}

@media only screen and (min-width: 1200px) {}

/*
# vim: expandtab ts=4 sw=4 sts=4
# vim: fileencoding=utf-8
*/
