* {
    box-sizing: border-box;
}
a {
  text-decoration:none;
}
input[type=focus] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 3px solid #ccc;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  outline: none;
}
input[type=focus]:focus {
  border: 3px solid #555;
}
input[type=default] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 3px solid #ccc;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  outline: none;
}
.bar {
	padding:10px 40px; 
	border-radius:15px;
}
.bar-warning {
    background:#F78181;
    color:white;
}
.bar-information {
    background:#81BEF7;
    color:white;
}
.bar-done {
    background:#04B431;
    color: white;
}
.info {
    position: relative;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.info .infotext {
    visibility: hidden;
    width: 160px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -80px;
}
.info .infotext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}
.info .show {
    visibility: visible;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
}
@-webkit-keyframes fadeIn {
    from {opacity: 0;} 
    to {opacity: 1;}
}
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity:1 ;}
}
#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
}

#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;} 
    to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
    from {bottom: 30px; opacity: 1;} 
    to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}
body {
    font-family: Arial;
    margin: 0;
}
.header {
    padding: 80px;
    background: #1abc9c;
    color: white;
}
.header h1 {
    font-size: 40px;
}
.header a {
    text-decoration: none;
    color: white;
}
.text-center {
    text-align: center;
}
/* navbars */
.navbar-theme-dark {
    overflow: hidden;
    background-color: #333;
}
.navbar-theme-dark a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
}
.navbar-theme-dark a.right {
    float: right;
}
.navbar-theme-dark a:hover {
    background-color: #ddd;
    color: black;
}
.navbar-theme-light {
    overflow: hidden;
    background-color: #ddd;
}
.navbar-theme-light a {
    float: left;
    display: block;
    color: #000;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
}
.navbar-theme-light a.right {
    float: right;
}
.navbar-theme-light a:hover {
    background-color: #000;
    color: white;
}
.row {  
    display: -ms-flexbox; 
    display: flex;
    -ms-flex-wrap: wrap; 
    flex-wrap: wrap;
}
.container {
    -ms-flex: 30%; 
    flex: 30%;
    background-color: white;
    padding: 20px;
}
.readbox {
    -ms-flex: 30%; 
    flex: 30%;
    background-color: white;
    padding: 20px;
}
.inbox {   
    -ms-flex: 70%; 
    flex: 70%;
    background-color: #f1f1f1;
    padding: 20px;
}
.footer-default {
    padding: 20px;
    text-align: center;
    background: #E6E6E6;
    color: grey
}
@media screen and (max-width: 700px) {
    .row-default {   
        flex-direction: column;
    }
}
@media screen and (max-width: 400px) {
    .navbar a {
        float: none;
        width: 100%;
    }
}
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover, .offcanvas a:focus{
    color: #f1f1f1;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}
