/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* new html elements added in all pages: */
/* ===================================== */
/* @keyframes slideDown{
    0% {
        opacity: 0;
        transform: scaleY(0.8) translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: scaleY(1) translateY(5px);
    }
} */

header nav .menu-icon{
    /* display: inline-block; */
    width: 45px;
    height: 20px;
    background-image: url(/admin/images/icons/menu.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto 100%;
    display: none;
    position: relative;
    top: 13px;
    left: 20px;
}
.table-responsive-label{
    display: none;
}

/* we changed its html structure */
#redbanner{
    width: 100%;
    height: auto;
}
#redbanner, #redbanner > h5{
    font-size: 18px;
    font-weight: 500;
}

#redbanner > h5{
    margin: 0px 0px 10px;
}
#redbanner > ul{
    list-style: none;
    margin: 0px auto;
    padding: 0px;
    width: 100%;
    max-width: 900px;
}
#redbanner > ul > li{
    display: inline-block;
    padding: 8px 10px;
}
section#legenda div.filters p{
    display: none;
}

/**
 * register input was using background image to give the shape of input:
 *     https://www.urltrade.nl/admin/images/registreren-input.png
 * cleaning that mess
*/
.registreren *{
    box-sizing: border-box;
}
.registreren li{
    padding: 0px 5px 30px;
    margin: 0px 0px 0px;
    float: none;
    height: auto;
    display: inline-block;
    width: 49%;
}
/* the parent of <input> */
.registreren li .invoer{
    background: none;
    width: 100%;
    height: auto;
}
.registreren li input,
.registreren li .invoer select{
    display: inline-block;
    width: 100%;
    max-width: 100%;
    height: auto;
    line-height: normal;
    margin: 0px 0px 0px 0px; /* to show that we override all old 4 values*/
    font-size: 16px;
    padding: 7px 10px;
    background-color: #FFFFFF;
    border: 2px solid #d2d9dc;
    border-radius: 2px;
}
#registreren-button{
    width: 100%;
    text-align: center;
    padding: 15px 10px;
    margin: 0px 0px 0px 0px;
}
#registreren-button input{
    float: none;
    margin: 0px 0px 0px 0px;
    display: inline-block;
}


/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* common for all pages: */
/* ===================== */
@media all and (max-width: 1100px) {
    *{
        box-sizing: border-box;
    }
    body{
        width: 100%;
        margin: 0px;
        padding: 0% 2%;
        overflow-x: hidden;
    }

    /**
     * header
    */
    header{
        width: 100%;
        max-width: 100%;
    }

    header div#helpdesk{
        display: none;
    }

    header div#logo{
        width: 50%;
    }
    header div#logo img{
        max-width: 100%;
        height: auto;
    }

    header div#tagline{
        left: auto;
        right: 0%;
        top: 28px;
    }

    /**
     * header #login
    */
    header div#login{
        position: static;
        padding-left: 0%;
    }
    header div#login li{
        height: auto;
    }
    /* header div#login form{display: inline-block;} */
    header div#login ul{
        width: 100%;
        max-width: 325px;
        position: relative;
        padding-right: 72px; /* submit button is absolute positioned to right */
    }
    header div#login input[name=username], header div#login input[name=password]{
        width: calc(50% - 10px);
    }
    header div#login a{
        display: inline-block;
    }
    header div#login > a:first-of-type{
        display: none;
    }
    header div#login input[type=submit]{
        float: none;
        margin-top: 0px;
        position: absolute;
        top: 0px;
        right: 0px;
        padding: 0px;
        line-height: 26px;
        min-width: 70px;
        font-size: 12px;
    }

    /**
     * nav
    */
    header nav{
        height: 45px;
        /* position: relative; */
    }
    header nav .menu-icon{
        display: inline-block;
    }
    header nav ul{
        position: absolute;
        top: calc(100% - 5px);
        left: 20px;
        padding: 0px 5px;

        background: white;
        min-width: 200px;
        border-radius: 8px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        transition: all 0.3s ease;
        animation: slideDown 0.4s ease forwards;
        overflow: hidden;
        
        display: none;
        /* visibility: hidden;
        opacity: 0;
        transform-origin: top center;
        transform: translateY(-10px); */
    }

    header nav .menu-icon.active-dropdown-menu ~ ul{
        display: block;
        /* visibility: visible;
        opacity: 1;
        transform: translateY(5px); */
    }

    header nav ul li{
        display: block;
        padding: 12px 20px;
        text-decoration: none;
        transition: all 0.2s ease;
        border-bottom: 1px solid #f0f0f0;
    }
    header nav ul li a{
        color: #242424;
        padding: 0px;
    }


    /**
     * FAQs page but keeping selectors global in case it affects other pages.
     * UPDATE: it affects register page too.
    */
    #content {
        display: inline-block;
        float: none;
        width: 69%;
        max-width: 645px;
        vertical-align: top;
    }
    #sidebar {
        display: inline-block;
        float: none;
        max-width: 282px;
        width: 29%;
        overflow: hidden;
        padding: 24px 5px;
    }

    /**
     * Register page but keeping selectors global too
     */
     #sidebar .widget img{
        width: 100%;
        max-width: 253px;
        height: auto;
     }
}

@media all and (max-width: 760px) {
    header div#logo h1, header div#tagline *{
        font-size: 10px !important;
    }

    /**
     * FAQs page but keeping selectors global in case it affects other pages.
    */
    #content {
        width: 100%;
        max-width: 100%;
    }
    #sidebar {
        width: 100%;
        max-width: 100%;
        padding: 24px 18px;
    }
}




/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* main page: */
/* ===================== */
@media all and (max-width: 1100px) {
    /**
     * hero section steps
    */
    ul#stappen{
        width: 100%;
        overflow: hidden;
        background: none;
        background-color: #2baee1;
        /* background-color: #FFFFFF;
        display: flex;
        margin: 0;
        padding: 0;
        outline: 1px solid red; */
    }
    ul#stappen li{
        width: 33.3333%;
        margin-right: 0%;
        padding: 0%;
        background: none;
        border-right: 1px solid #75caec;
        /* outline: 1px solid green; */
    }
    ul#stappen li:last-of-type{
        border-right-color: rgba(255, 255, 255, 0.0); /* so last one not having 1px extra if dropped border */
    }

    ul#stappen img{
        width: 96%;
        display: block;
        margin: 0px auto;
        max-width: 100%;
        height: auto;
        /* outline: 1px solid red; */
    }
    ul#stappen p{
        padding: 15px 6% 25px;
        margin-bottom: 0%;
    }

    /**
     * banner of count of domains
    */
    #redbanner{
        width: 100%;
        height: auto;
        line-height: 20px;
    }
    #redbanner, #redbanner > h5{
        font-size: 16px;
    }

    

    /**
     * blocks of main page
    */
    .mainBdy #container{
        width: 100%;
        max-width: 650px;
        margin: 0px auto;
    }
    .mainBdy #container > article, .mainBdy #container > aside{
        display: block;
        float: none;
        margin: 0px auto;
        width: 100%;
    }
    .mainBdy #container > article .item.bg-blue{
        background: linear-gradient(
            to right,
            #2baee1 0%,
            #2baee1 50%,
            #ffffff 50%,
            #ffffff 100%
        );
    }
    .mainBdy #container > article .item.bg-orange{
        background: linear-gradient(
            to right,
            #ff9e04 0%,
            #ff9e04 50%,
            #ffffff 50%,
            #ffffff 100%
        );
    }
    .mainBdy #container > article .block{
        width: 50%;
        /* display: none; */
    }
    .mainBdy #container > aside .block{
        float: none;
        width: 100%;
    }
    /* .mainBdy #container > aside .block > h3,.mainBdy #container > aside .block > div,.mainBdy #container > aside .block > hr{
        width: 100%;
        max-width: 320px;
    } */


    /**
     * footer
    */
    #footer > ul{
        width: 100%;
        max-width: 650px;
        margin: 0px auto;
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
        /* outline: 1px solid red; */
    }
    #footer > ul > li{
        /* outline: 1px solid yellow; */
        margin-right: 0px;
        margin-left: 0px;
        margin-bottom: 0px;
        padding: 15px;
        float: none;
        min-width: 180px;
        width: 50%;
        max-width: 400px;
    }
    #footer > ul > li.first{
        padding-top: 15px;
        margin-right: 0px !important;
        text-align: left;
    }
    #footer > ul > li.first > img{
        max-width: 100%;
        height: auto;
        margin-top: 0.83em;
    }
    /* #footer > ul > li:last-of-type{
        min-width: 260px;
    } */

}

@media all and (max-width: 900px) {
    /**
     * hero section steps
    */
    ul#stappen p{
        font-size: 12px;
    }

    /**
     * banner of count of domains
    */
    /* #redbanner{
        
    } */

    /**
     * big button register now
    */
    .margin15.center{
        margin: 15px auto;
    }
    .btn.large.width320{
        display: inline-block;
        font-size: 18px;
        line-height: 45px;
        padding: 0px 20px;
        margin: 0px auto;
        width: 100%;
        max-width: 300px;
    }
}

@media all and (max-width: 800px) {
    /**
     * banner of count of domains
    */
    /* #redbanner{
        
    } */
}

@media all and (max-width: 650px) {
    /**
     * half-blue-half-white block of main page
    */
    .mainBdy #container > article .item.bg-blue,
    .mainBdy #container > article .item.bg-orange{
        background: #FFFFFF;
    }
    .mainBdy #container > article .item.bg-blue .block:first-of-type{
        background: #2baee1;
    }    
    .mainBdy #container > article .item.bg-orange .block:first-of-type{
        background: #ff9e04;
    }
    .mainBdy #container > article .block{
        width: 100%;
        text-align: center;
        /* display: none; */
    }

}
@media all and (max-width: 600px) {
    /**
     * hero section steps
    */
    ul#stappen li{
        display: block;
        width: 100%;
        /* min-width: 200px; */
        max-width: 400px;
        margin: 0px auto 15px;
        border-width: 0px;
        float: none;
    }
    ul#stappen p{
        padding: 8px 3% 5px;
    }

    /**
     * banner of count of domains
    */
    #redbanner img{
        margin-right: 10px;
    }

}
@media all and (max-width: 500px){
    /**
     * footer
    */
    #footer > ul > li{
        min-width: 160px;
    }
}



/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* auction page: */
/* ===================== */
@media all and (max-width: 1100px) {
    /**
     * Last refresh
    */
    header div#refresh{
        top: calc(100% - 30px);
    }

    /**
     * #main .block (on all pages)
    */
    /* .auctionBdy  */section#main{
        padding-right: 10px;
        padding-left: 10px;
    }

    /* .block{ */
        /* display: inline-block;
        position: static;
        vertical-align: top; */
        /* float: none; */
        /* margin: 0px; */
        /* width: 100%;
        max-width: 450px; */
    /* } */

    .block.width300{
        width: 30%;
    }
    .block.width620{
        width: 65%;  /* leaving some space for margin */
    }


    /**
     * footer
    */
    #footerlinks{
        text-align: center;
        padding-bottom: 30px;
    }
 
}

@media all and (max-width: 900px) {
    section.intro{
        text-align: center;
    }
    section.username{
        padding-top: 10px;
        position: static;
        text-align: center;
    }
}

@media all and (max-width: 800px) {
    section.block, .block.width620, .block.block.width300{
        display: block;
        margin: 0px auto 20px;
        width: 100%;
        max-width: 500px;
        float: none;
    }

    .face{
        padding-bottom: 0px;
        background-image: none;
    }
    .face > div{
        text-align: center;
    }

    #footerlinks{
        font-size: 11px;
    }
    #footerlinks .footerlinkseperator{
        padding: 0px 5px;
    }
    #footerlinks .footerlinkseperator:first-of-type{
        visibility: hidden;
        display: block;
        font-size: 5px;
    }
}

@media all and (max-width: 760px) {
    header div#refresh{
        font-size: 10px;
    }
    header div#refresh a{
        padding-right: 20px;
        background-size: auto 50%;

    }
    section#tips{
        padding-right: 10px;
        padding-left: 10px;
        /* overflow: hidden; */
    }
    section#tips a{
        margin-right: 0px;
    }

    /* section#tips div.banner element has zero content but it takes space */
    section#tips li/* , section#tips div.banner */{
        width: 100%;
        max-width: 320px;
    }
    
}

@media all and (max-width: 600px){
    /* .auctionBdy section#main section.block:nth-of-type(2) div#user */
    div#user{
        max-width: 100%;
    }
    /* email <a> */
    /* 
        word-break: normal;
        ? Keeps normal word wrapping behavior.

        overflow-wrap: break-word;
        ? Moves the whole word to the next line first.
        ? If the word is still longer than the container, then it breaks it.
     */
    div#user > div > a{
        overflow-wrap: break-word;  /* modern */
        word-wrap: break-word;      /* legacy support */
        word-break: normal;         /* prevent aggressive breaking */
    }
    div#user a.btn{
        position: static;
        display: inline-block;
        margin-top: 5px;
    }
}

@media all and (max-width: 520px){
    section.intro{
        padding-right: 10px;
        padding-left: 10px;
    }
    section.intro h1{
        font-size: 16px;
    }
    section.username{
        font-size: 10px;
    }

    auctionBdy .block td, auctionBdy .block th{
        font-size: 10px;
        vertical-align: top;
    }

    section#planning div#time{
        padding-left: 40px;
        background-position: 10px 4px;
        background-size: 20px auto;
    }
    section#planning div#time h3{
        font-size: 12px;
        /* margin-bottom: 0px; */
    }
    section#planning div#time h3+table.norowlinesfutureauctions{
        margin-top: 5px !important;
    }
    section#planning div#time h3+table.norowlinesfutureauctions th:first-of-type{
        width: 38%;
    }
}



/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* auctionlist page: */
/* ===================== */
@media all and (max-width: 1100px) {
    /**
     * main .blocks (search and recommended domains blocks)
    */
    .auctionlistBdy section#main > section{
        display: inline-block;
        width: 72%;
        float: none;
        vertical-align: top;
    }
    /* search block */
    .auctionlistBdy section#main > section:first-of-type{
        width: 25%;
    }
    
    /* lists in the recommended block */
    .auctionlistBdy section#main > section#filter div.recommended{
        float: none;
        display: inline-block;
        padding: 0px;
        width: 60%;
    }
    .auctionlistBdy section#main > section#filter div.recommended ul{
        float: none;
        display: inline-block;
        width: auto;
        margin-left: 0%;
        padding-left: 6%;
        /* max-width: 100px; */
        list-style: none;
    }
    /* see-all-recommended container */
    .auctionlistBdy section#main > section#filter div.recommended + div{
        display: inline-block;
    }


    /**
     * Pagination
    */
    /* .auctionlistBdy .pagination{} */
    div.pagination ul{
        margin-left: 0px;
        width: 100%;
        padding: 0px 1.5%;
        text-align: center;
        /* display: flex;
        justify-content: space-evenly; */
    }
    div.pagination li.pageinfo, div.pagination li.pagedomaincount{
        width: 24%;/* dropped some percentage for the space between elements */
        text-align: left;
        /* max-width: 210px; */
    }
    div.pagination li.pagedomaincount{
        text-align: right;
    }
    div.pagination li.pagenumbers{
        width: 50%;
        /* max-width: 530px; */
    }
    div.pagination li.pagenumbers > ol > *{
        margin: 0px 5px;
        padding: 0px 0px;
    }
    div.pagination li.pagenumbers > ol > a{
        padding: 0px 5px;
    }
    div.pagination li.pagenumbers a, 
    div.pagination li.pagenumbers .active, 
    div.pagination li.pagenumbers .inactive
    {
        display: inline-block;
        padding: 0px 0px;
        min-width: 32px;
        height: 32px;
        line-height: 32px;
    }
    /**
     * Hide all pagination numbers except:
     * [1] [2] [3] [...] [46/last-number] [next]
    */
    div.pagination li.pagenumbers li{
        display: none;
    }
    
    div.pagination li.pagenumbers li:nth-child(-n+3), /* show first 3 numbers */
    div.pagination li.pagenumbers li.inactive, /* show the dots */
    div.pagination li.pagenumbers li:nth-last-child(2), /* show last page number (before next) */
    div.pagination li.pagenumbers a /* show next link */
    {
        display: inline-block;
    }

    /**
     * The colors and column explainations at the bottom
    */
    section#legenda{
        overflow: hidden;
        padding-right: 10px;
        padding-left: 10px;
    }
    section#legenda > div{
        display: inline-block;
        float: none;
        vertical-align: top;
    }
    section#legenda > div.legenda{
        width: 40%;
    }
    section#legenda > div:last-of-type{
        width: 55%;
    }
    section#legenda div.filters{
        width: 100%;
        border-right: 0px;
    }
    section#legenda div.filters + div#columntitles{
        display: none;
    }
    section#legenda div.filters > div{
        background-color: #FFFFFF;
        border: 1px solid #D6D6D6;
        border-radius: 5px;
        padding: 8px 8px;
        margin-bottom: 10px;
    }
    section#legenda div.filters p{
        display: inline-block;
        width: 100%;
        margin-bottom: 0px;
        /* background-color: #D6D6D6; */
    }

    /**
     * "My Filter" form
    */
    section#filter form{
        display: inline-block;
        width: 100%;
        float: none;
        margin-right: 0px;
        /* outline: 2px solid red; */
    }
    section#filter form > table{
        width: 100% !important;
        /* outline: 1px solid green; */
    }
    section#filter form > table input[type="text"]{
        width: 44%;
    }

}
@media all and (max-width: 900px) {
    /**
     * top "Bids [0] [0]" under Logged-in-as
    */
    section.username ul{
        width: 100%;
        margin-left: 0px;
        padding-top: 7px;
    }
    section.username ul >li{
        float: none;
        display: inline-block;
    }
    /* search block and lists in the recommended block */
    .auctionlistBdy section#main > section{
        display: block;
        margin: 0px auto 15px;
    }
    /* search block */
    .auctionlistBdy section#main > section:first-of-type{
        width: 100%;
        max-width: 350px;
    }
    /* lists in the recommended block */
    .auctionlistBdy section#main > section#filter{
        width: 100%;
        max-width: 800px;
    }


    /**
     * filter tabs on top of the table
    */
    div#tblVeiling div.domeintypes, div#tblVeiling div.filters{
        position: static;
        width: 100%;
        text-align: center;
        padding: 0px 10px;
    }
    div#tblVeiling div.tabs > ul{
        /* width: 100%;
        max-width: 700px;
        margin: 0px auto;
        display: flex;
        justify-content: space-between; */
        display: inline-block;
        /* border-bottom: 1px solid #D6D6D6; */
        /* outline: 1px solid green; */
    }
    div#tblVeiling div.domeintypes > ul{
        border-bottom: 1px solid #D6D6D6;
    }
    div#tblVeiling div.tabs li{
        float: none;
        display: inline-block;
        /* width: 19%; */
        /* max-width: 130px; */
        padding: 5px 5px 0px;
        /* outline: 1px solid red; */
    }
    div#tblVeiling div.tabs a{
        width: 100%;
        padding: 0px 10px 0px;
        font-size: 12px;
        line-height: 37px;
    }



    /**
     * THE TABLE
    */
    .table-responsive-label{
        display: inline-block;
        width: 45%;
        background-color: #2baee1;
        color: #FFFFFF;
        border-right: 1px solid #D6D6D6;
        padding: 5px 5px;
        font-size: 15px;
        line-height: 20px;
        margin-right: 10px;
    }
    table#veiling{
        display: block;
        width: 100%;
        border-top: 1px solid #D6D6D6;
        padding-top: 15px;
    }
    table#veiling tbody{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
    }
    table#veiling tbody tr{
        width: 100%;
        max-width: 280px;
        margin: 15px 15px;
        border: 1px solid #D6D6D6;
        background-color: #FFFFFF;
        border-radius: 5px;
        box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px;
    }
    table#veiling tbody tr:hover{
        background-color: #FFFFFF;
    }
    table#veiling td{
        display: block;
        width: 100%;
        padding: 0px;
        padding-left: 0px;
        border: 1px solid #D6D6D6;
        background: #FFFFFF !important;
        font-size: 15px;
    }
    table#veiling thead{
        display: none;
    }
    /* the title of each card (each tr)*/
    table#veiling tbody tr td:first-child,
    table#veiling tbody tr td:last-child{
        padding-left: 0px;
        padding-right: 0px;
        text-align: center;
        padding: 10px 5px;
    }

    /* first td has the domain as title, last td has the "place_bid" as button*/
    table#veiling tbody tr td:first-child .table-responsive-label, 
    table#veiling tbody tr td:last-child .table-responsive-label{
        display: none;
    }
    table#veiling tbody tr td:first-child,
    table#veiling tbody tr td:first-child a{
        font-size: 22px;
        color: #2baee1;
        font-weight: 600;
        /* text-decoration: underline; */
    }
    table#veiling tbody tr td:last-child a{
        font-size: 17px;
        color: #FFFFFF;
        background-color: #ff9e04;
        border-radius: 8px;
        padding: 6px 5px;
        display: inline-block;
        width: 70%;
        max-width: 150px;
    }
    table#veiling tbody tr td:last-child a:hover{
        background-color: #2baee1;
        color: #FFFFFF;
        text-decoration: none;
    }



    /**
     * The colors and column explainations at the bottom
    */
    section#legenda{
        max-width: 500px;
        margin: 0px auto;
    }
    section#legenda > div.legenda,
    section#legenda > div:last-of-type{
        width: 100%;
        margin-bottom: 20px;
    }
}
@media all and (max-width: 700px) {
    /* lists in the recommended block */
    .auctionlistBdy section#main > section#filter{
        text-align: center;
    }
    .auctionlistBdy section#main > section#filter div.recommended{
        width: 100%;
        text-align: left;
    }
    .auctionlistBdy section#main > section#filter div.recommended ul{
        width: 32%;
        /* max-width: 25%; */
        min-width: 120px;
        margin-bottom: 15px;
    }

    /**
     * Pagination
    */
    /* hide left and right counts */
    div.pagination li.pageinfo, div.pagination li.pagedomaincount,
    div.pagination li.pagedomaincount
    {
        display: none;
    }
    div.pagination li.pagenumbers{
        width: 100%;
    }
}
@media all and (max-width: 600px){
    /**
     * "My Filter" form
    */
    section#filter form > table tr, section#filter form > table td{
        display: inline-block;
        width: 100%;
        padding-left: 0px;
        text-align: left;
        vertical-align: top;
    }
    section#filter form > table tr{
        padding-left: 20px;
        padding-bottom: 8px;
        /* outline: 1px solid red; */
    }

}
@media all and (max-width: 450px) {
    /* lists in the recommended block */
    .auctionlistBdy section#main > section#filter div.recommended ul{
        width: 48%;
    }
    .auctionlistBdy section#main > section#filter div.recommended ul:nth-child(n+3){
        display: none;
    }
}




/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* bid page: */
/* ===================== */
@media all and (max-width: 1100px) {
    .bidBdy table#veiling tbody tr td:last-child{
        display: none;
    }


    /**
     * the blue and orange blocks
    */
    .bidBdy section#main .block{
        float: none;
        display: block;
        /* vertical-align: top; */
        margin: 0px auto;
    }

    /* place bid form */
    section.bod form{
        height: auto;
    }
    section.bod form > div{
        display: inline-block;
        width: 35%;
        padding-right: 10px;
        vertical-align: middle;
        /* position: static;
        float: none; */
        /* outline: 1px solid red; */
    }
    section.bod form > div:last-of-type{
        width: 60%;
        /* outline: 1px solid green; */
    }
    section.bod form > div > input{
        position: static !important;
        float: none;
    }
}
@media all and (max-width: 700px) {
    article.message h2{
        font-size: 22px;
    }
    article.message h4{
        font-size: 14px;
        margin-top: 4px;
    }
}
@media all and (max-width: 550px) {
    section.bod form{
        padding-right: 0px;
        padding-left: 0px;
    }
    section.bod form > div, section.bod form > div:last-of-type{
        display: block;
        width: 100%;
        margin: auto;
        text-align: center;
        padding-right: 0px;
        padding-left: 0px;
    }
}




/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* ======================================================================================== */
/* register page: */
/* ===================== */
@media all and (max-width: 600px) {
    .registreren li{
        width: 100%;
    }
}

