
.w3-animate-fading {
    animation: fading 10s infinite
}

@keyframes fading {
    0% {
        opacity: 0
    }

    20% {
        opacity: 1
    }

    80% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

.w3-content {
    max-width: 980px
}

.w3-section, .w3-code {
    margin-top: 16px !important;
    margin-bottom: 16px !important
}

* {
    box-sizing: border-box;
}

/* Style the body */
body {
    font-family: Arial, Helvetica, sans-serif;
    color: DimGray;  
    margin: 0;
}

/* Header/logo Title */
.header {
    padding: 0px 0px 0px 0px;
    /* text-align: center; */
    background: #ffffff;
    /* color: #4682B4; */ 
        color: #008080;
}

    /* Increase the font size of the heading */
    .header h1 {
        font-size: 40px;
    }




/* Sticky navbar - toggles between relative and fixed,             */
/* depending on the scroll position. It is positioned              */
/* relative until a given offset position is met in the            */
/* viewport - then it "sticks" in place (like position:fixed).     */
/* The sticky value is not supported in IE or Edge 15 and          */
/* earlier versions. However, for these versions the navbar        */
/* will inherit default position                                   */

.navbar {
    overflow: hidden;
    background-color: #008080;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    list-style-type: none;
    /* margin: 0;  To remove default bottom margin */
    padding: 0; /* To remove default left padding */
}

    /* Style the navigation bar links */
    .navbar a {
        float: left;
        display: block;
        color: white;
        text-align: center;
        padding: 14px 20px;
        text-decoration: none;
    }


        /* Right-aligned link */
        .navbar a.right {
            float: right;
        }

        /* Change color on hover */
        .navbar a:hover {
            background-color: #ddd;
            color: black;
        }

        /* Active/current link */
        .navbar a.active {
            background-color: #666;
            color: white;
        }
/****************************************************/

.topnav {
    /* overflow: hidden;*/
    background-color: #008080;
    position: relative;
}

    .topnav #myLinks {
        display: none;
    }

    .topnav a {
        color: white;
        padding: 14px 14px;
        text-decoration: none;
        font-size: 17px;
        display: block;
    }

        .topnav a.icon {
            background: black;
            display: block;
            position: absolute;
            right: 0;
            top: 0;
        }

        .topnav a:hover {
            background-color: #dddddd;
            color: black;
        }

.abar {
    width: 30px;
    height: 4px;
    background-color: #333333;
    margin: 5px 0;
}

/* Column container */
.row {
    display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
}

/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.side {
    -ms-flex: 30%; /* IE10 */
    flex: 30%;
    background-color: #f1f1f1;
    padding: 20px;
}

/* Main column */
.main {
    -ms-flex: 70%; /* IE10 */
    flex: 70%;
    background-color: white;
    padding: 20px;
}

/* Fake image, just for this example */
.fakeimg {
    background-color: #aaa;
    width: 100%;
    padding: 20px;
}

/* Footer */
.footer {
    padding: 20px;
    text-align: center;
    background: #ddd;
}

/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
    .row {
        flex-direction: column;
    }
}

.itsmobil {
    display: none;
    visibility: hidden;
}

.itscomp {
    display: block;
    visibility: visible;
}

@media (max-width: 400px) {

    .itsmobil {
        display: block;
        visibility: visible;
    }

    .itscomp {
        display: none;
        visibility: hidden;
    }
}

.articlecontainer {
    display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
}

.articlecell {
     width: 380px;  
    /* padding : 30px; */
    /* border-bottom: 4px solid gray ; */

    padding-top: 0px;
    padding-right: 30px;
    padding-bottom: 0px;
    padding-left: 30px;
}

.ourheader {
    color: #888888;
    font-family: arial, sans-serif;
    font-size: 24px;
    font-weight: bold;
    margin-top: 0px;
    margin-bottom: 1px;
    padding: 15px;
}

.ourtitle {
    color: #333333;
    font-family: arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    margin-top: 0px;
    margin-bottom: 8px;
}

input[type=text], input[type=password] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
    border-radius: 4px;
}



button {
    background-color: #4682B4;   /* #04AA6D */
    color: white;
    padding: 4px 4px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
    border-radius: 4px;
    height: 32px;
}

    button:hover {
        opacity: 0.8;
    }

.testbut {
    width: 120px;
    height: 30px;
    background-color: #04AA6D;
    color: white;
    border: none;
    border-radius: 4px;
}

    .testbut:disabled {
        color: #666;
        background-color: #aaccaa;
    }


.cancelbtn {
    width: auto;
    padding: 4px ;
    background-color: #f44336;
}

.newaccountbtn {
    width: auto;
    padding: 10px 18px;
    background-color: #e59866;
}

.imgcontainer {
    text-align: center;
    margin: 24px 0 12px 0;
}

img.avatar {
    width: 40%;
    border-radius: 50%;
}

.container {
    padding: 16px;
}

span.psw {
    float: right;
    padding-top: 16px;
}



/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 300px) {
    span.psw {
        display: block;
        float: none;
    }

    .cancelbtn {
        width: 100%;
    }
}
/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
    .navbar a {
        float: none;
        width: 100%;
    }
}


/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    padding-top: 60px;
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
  
}


.dropdownp {
    float: left;
    overflow: hidden;
}

    .dropdownp .dropbtnp {
        cursor: pointer;
        font-size: 16px;
        border: none;
        outline: none;
        color: white;
        padding: 14px 16px;
        //background-color: inherit;
        background-color: #4682B4;
        font-family: inherit;
        margin: 0;
    }

    .navpbar a:hover, .dropdownp:hover .dropbtnp, .dropbtnp:focus {
        background-color: #f5f2db;
    }

.dropdownp-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 80px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 5px;
}

    .dropdownp-content a {
        float: none;
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
    }

        .dropdownp-content a:hover {
            background-color: #ddd;
        }

.show {
    display: block;
}


