.note {

    height: 200px;
    padding: 10px;
    position: absolute;
    width: 200px;
    -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.75);
}

.note:hover .closebutton {
    display: block;
}

.closebutton {
    display: none;
    background-image: url(../images/deleteButton.png);
    height: 30px;
    position: absolute;
    left: -15px;
    top: -15px;
    width: 30px;
}

.closebutton:active {
    background-image: url(../images/deleteButtonPressed.png);
}

.content {
    outline: none;
    border: none;
    font-size: 15px;
    font-weight: normal;

    width: 100%;
    height: 75%;
     -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
     -moz-box-sizing: border-box;    /* Firefox, other Gecko */
     box-sizing: border-box;
}

.noteTitle {
    outline: none;
    border: none;
    font-size: 15px;
    font-weight: bold;

    width: 100%;
    height: 20px;
    border-bottom: 1px dashed grey;
     -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
     -moz-box-sizing: border-box;    /* Firefox, other Gecko */
     box-sizing: border-box;
}


.sidebar {
    position: fixed;
    right: 0;
    top: 0;
    background: #efefef;
    opacity: 0.7;
    height: 100%;
    width: 70px;
    z-index: 101;
    -webkit-box-shadow: 0px 5px 10px rgba(0.5, 0, 0, 0);
    font-size: 12px;
    font-weight: bold;
    font-family: "Helvetica";
    line-height: 40px;
    text-align: center;
}

.palette {
    position: absolute;
    top: 30%;
}

.top-icons {
    position: absolute;
    top: 0;
    margin-top: 25px; /* 25pm already from sidebar-icons */

}

.bottom-icons {
    position: absolute;
    bottom: 0;
    margin-bottom: 50px;
}

.sidebar-icon {
    left: auto;
    right: auto;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    border: 1px solid white;
    z-index: 102;
    margin-top: 25px;
    margin-left: 15px;
    -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
}

.sidebar-icon:hover {
    border-radius: 10px;
    -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 2);
}

.sidebar-icon:hover {
    border-radius: 10px;
    background-color: white;
}

.icon-image {
    width: 32px;
    padding: 2px;
}

.palette-color {
    left: auto;
    right: auto;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    border: 1px solid white;
    z-index: 102;
    margin-top: 25px;
    margin-left: 15px;
    -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
}

.palette-color:hover {
    border-radius: 10px;
}

#color1 {
    background-color: #FFFFA5; /*Yellow*/
}
#color1:active {
    background-color: white;
}
#color2 {
    background-color: #D9F0FF; /*blue*/
}
#color2:active {
    background-color: white;
}
#color3 {
    background-color: #c4f0c4; /*green*/
}
#color3:active {
    background-color: white;
}
#color4 {
    background-color: #f7d1cf; /*red*/
}
#color4:active {
    background-color: white;
}