:root {
    --maincolor: #009ACD;
    --seccolor: #bdbdbd;
  }

* {
    box-sizing: border-box;
}

html {
    /*font-family: "Verdana", sans-serif;*/
    font-family: "Quicksand";
}


img {
    max-width: 100%;
    height: auto;
}

.center{
    text-align: center;
}

.colborder{
    border: 1px solid var(--seccolor);
}

.inputlog{
    font-size: 20px;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid var(--seccolor);
    width: 100%;
}

.inputlog:hover{
    background-color: #dfdfdf;
}

.inputlog:focus{
    background-color: #dfdfdf;
}

.btn{
    font-size: 15px;
    padding: 10px;
    border-radius: 4px;
    background-color: #ffffff;
    border: 1px solid var(--seccolor);
    width: 100%;
}

.btn:hover{
    color: #ffffff;
    background-color: var(--maincolor);
}

.btnnew{
    font-size: 12px;
    padding: 8px;
    border-radius: 4px;
    background-color: #ffffff;
    border: 1px solid var(--seccolor);
    width: 100%;
}

.btnnew:hover{
    color: #ffffff;
    background-color: var(--maincolor);
}

.btnlogout{
    font-size: 13px;
    border-radius: 4px;
    border: 1px solid var(--seccolor);
    background-color: #ffffff;
}

.btnlogout:hover{
    color: #ffffff;
    background-color: var(--maincolor);
}

.inputform{
    font-size: 20px;
    border-radius: 4px;
    border: 1px solid var(--seccolor);
    width: 70%;
}

.header {
    background-color: var(--maincolor);
    color: #ffffff;
    padding: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    text-align: center;
    border-radius: 4px;
}

.header a:any-link{
    color: #fff;
    text-decoration: none;
}

.dashboardbox{
    width: 100%;
    border-radius: 4px;
    border: 1px solid var(--seccolor);
    color: #000000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    margin-top: 10px;
}

.dashboardbox:hover{
    background-color: var(--maincolor);
    color: #fff;
}

.plainlink{
    text-decoration: none;
    margin-top: 5px;
}

.status{
    background-color: var(--seccolor);
    padding: 5px;
    color: #ffffff;
    font-size: 13px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    text-align: right;
    border-radius: 4px;
}

/* For small mobile phones: */
[class*="col-"] {
    width: 100%;
    float: left;
    padding: 15px;
}

/*.thumbnoten{
    z-index: 1;
}*/

.editnoten{
    z-index: 2;
    position: absolute;
    top: 0;
    right: 0;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    opacity: 0;
    width: 50px;
}

.box{
    position: relative;
    width: 50%;
}

.box:hover .editnoten{
    opacity: 1;
}

@media only screen and (min-width: 375px) {
    /* For Mobile: */
    .col-m-1 {width: 25%;}
    .col-m-2 {width: 50%;}
    .col-m-3 {width: 75%;}
    .col-m-4 {width: 100%;}
    .col-m-5 {width: 100%;}
    .col-m-6 {width: 100%;}
    .col-m-7 {width: 100%;}
    .col-m-8 {width: 100%;}
    .col-m-9 {width: 100%;}
    .col-m-10 {width: 100%;}
    .col-m-11 {width: 100%;}
    .col-m-12 {width: 100%;}

    .thumbnoten{max-width:100%;}

    .editnoten{
        max-width: 30px;
    }
}
  
@media only screen and (min-width: 600px) {
    /* For tablets: */
    .col-s-1 {width: 8.33%;}
    .col-s-2 {width: 16.66%;}
    .col-s-3 {width: 25%;}
    .col-s-4 {width: 33.33%;}
    .col-s-5 {width: 41.66%;}
    .col-s-6 {width: 50%;}
    .col-s-7 {width: 58.33%;}
    .col-s-8 {width: 66.66%;}
    .col-s-9 {width: 75%;}
    .col-s-10 {width: 83.33%;}
    .col-s-11 {width: 91.66%;}
    .col-s-12 {width: 100%;}

    .thumbnoten{max-width:100%;}

    .editnoten{
        max-width: 40px;
    }
}

@media only screen and (min-width: 768px) {
    /* For desktop: */
    .col-1 {width: 8.33%;}
    .col-2 {width: 16.66%;}
    .col-3 {width: 25%;}
    .col-4 {width: 33.33%;}
    .col-5 {width: 41.66%;}
    .col-6 {width: 50%;}
    .col-7 {width: 58.33%;}
    .col-8 {width: 66.66%;}
    .col-9 {width: 75%;}
    .col-10 {width: 83.33%;}
    .col-11 {width: 91.66%;}
    .col-12 {width: 100%;}

    .thumbnoten{max-width:150px;
                max-height: 211px;}

    .editnoten{
        max-width: 40px;
    }
}


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

.footer {
    margin-top: 15px;
    background-color: var(--seccolor);
    color: #ffffff;
    border-radius: 4px;
    text-align: center;
    font-size: 12px;
    padding: 15px;
}

.menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
  
.menu li {
    font-size: 15px;
    padding: 8px;
    margin-bottom: 7px;
    background-color :#33b5e5;
    border-radius: 4px;
    color: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
  
.menu li:hover {
    background-color: var(--maincolor);
}

.aside ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
  
.aside li {
    padding: 8px;
    margin-bottom: 7px;
    background-color :var(--seccolor);
    border-radius: 4px;
    color: #000000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
  
.aside li:hover {
    background-color: var(--maincolor);
    color: #ffffff;
}

.aside p{
    font-size: 14px;
}

.aside a:any-link{
    text-decoration: none;
}

.menu a:any-link{
    text-decoration: none;
}

.musikerprobe{
    font-size: 13px;
}

.musikeranzeige{
    font-size: 13px;
}

.notenanzeige{
    font-size: 14px;
}

.notendetails{
    font-size: 10px;
}

.notenform input{
    color: #424242;
}

.notenform select{
    color: #424242;
}

a.link:any-link{
    text-decoration: none;
}

a.link:hover{
    text-decoration: underline;
}

.bckbtn{
    font-size: 15px;
    padding: 10px;
    border-radius: 4px;
    background-color: #ffffff;
    border: 1px solid var(--seccolor);
    max-width: 10%;
}

.bckbtn:hover{
    color: #ffffff;
    background-color: var(--maincolor);
}

.addbtn{
    font-size: 15px;
    padding: 10px;
    border-radius: 4px;
    background-color: #ffffff;
    border: 1px solid var(--seccolor);
}

.addbtn:hover{
    color: #ffffff;
    background-color: var(--maincolor);
}

.imgnoten{
    width: 15px;
}

a.bearblink:any-link{
    text-decoration: none;
}

.filterchip{
    width:140px;
    height:25px;
    border:0px;
    outline:none;
    color: #ffffff;
    background: var(--seccolor);
}

.filterchip:hover{
    background: var(--maincolor);
}

.filterwrapper{
    border-radius:36px;
    display:inline-block;
    overflow:hidden;
    background:var(--seccolor);
    border:1px solid var(--seccolor);
}