/*! HTML5 Boilerplate v6.0.1 | MIT License | https://html5boilerplate.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
/* FONTS */
@font-face{
    font-family: circular;
    src: local('../fonts/lineto-circular-pro-book.woff'), url('../fonts/lineto-circular-pro-book.woff') format('woff');
}

/*REGULAR*/
   html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/*----------- ALGEMEEN ---------*/


*{
    margin: 0;
    padding: 0;
    font-weight: 300;
    font-family: 'Circular', Helvetica;
}

body{
    font-size: 16px;
    font-family: 'Circular', Helvetica;
    font-weight: 300;
}

li{
    list-style: none;
    line-height: 1.4;
}

a{
    text-decoration: none;
    color:black;
}

h1{
    font-size: 2em;
    margin-top: 0;
    font-weight: 300;
}

h2{
    font-size: 1.5em;
    font-weight: 300;
}

h3{
    font-weight: 300;
    font-size: 1.3em;
    margin-bottom: 5px;
}

p{
    font-size: 1em;
}

strong{
    font-weight: 700;
}
.strong{
    font-weight: 700;
}

/*container*/
.container {
    margin-top: 170px;
    margin-right: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

/*ASIDE*/

.container .aside {
    width: 200px;
    font-size: 1.2em;
    left: 25px;
    position: fixed;
}
.container .aside ul li:before{
    content: '';
    display: inline-block;
    vertical-align: 6.5px;
    height: 2px;
    width: 0px;
    margin-right: 15px;
    background: #000000;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
}

.container .aside ul li:hover:before{ 
    width: 50px;
}  

button {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 180px;
    background-color: white;
    border: none;
    border-radius: 1px;
    padding: 9px 10px;
    cursor: pointer;
    border: 1px solid black;
    font-weight: 300;
    font-family: 'Circular', Helvetica;
    height: 50px;
    margin-left: 20px;
}

button:hover{
    background-color: black;
    color: white;
}

.container .main {
    margin-left: 240px;
    width:100%;
    overflow-x: hidden;
}

/*titel aan de rechterzijkant*/
.container .r-side{
    position: fixed;
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
    text-transform: uppercase;
}

/*error*/
.errors ul li{
    color: red; 
    text-align: center;
}

span.bold{
    font-weight: bold;
}

/*login box > succeed*/



@media screen and (max-width: 1100px) {
    .container .aside{
        font-size: 1.1em;
        width: 190px;
    }

    .container .main {
        margin-left: 225px;
    }

    .container {
        margin-top: 150px;
    }
}

@media screen and (max-width: 800px) {
    .main{
        margin-bottom: 30px;
    }
    .container{
        display: block;
        margin-left: 30px;
        margin-top: 130px;
    }
    /*line - filter - button*/
    .container .aside ul li:before{ 
        width: 0;
        display:hidden;
        content: none;
    }  

    .container .aside ul li:hover{ 
        background-color: black;
        color:white;
        content: none;
    }
    .container .aside ul li{
        content: none;
        padding: 10px 30px;
    }

    .container .aside ul li a:hover{
        content: none;
        color:white;
    }

    /*ASIDE*/
    .container .aside{
        font-size: .8rem;
        width: 100%;
        position: static;
        padding-left: 0;
        margin-bottom: 30px;
    }

    .container .aside ul{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        font-size: 1.5em;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .container .main {
        margin-left: 0;
    } 
    
    /*kolomen opsplitsen en per breedte opsplitsen*/
    .aside ul li{
        padding:6px 6px;
        margin-right: 10px;
        margin-bottom:10px;
        text-align: center;
        border: 1px solid black;
    } 
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

 .hidden {
    display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap; /* 1 */
}

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    -webkit-clip-path: none;
    clip-path: none;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
    white-space: inherit;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 1.25dppx),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   http://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important; /* Black prints faster:
                                   http://www.sanbeiji.com/archives/953 */
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre {
        white-space: pre-wrap !important;
    }
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}
