

.special-bar{
    width: 100%;
    min-height: 5px;
    background: #5c6e7f;
    color: #ffffff;
    position: fixed;
    bottom: 0;
    z-index: 9999999;
}

.note-box{
    width: 300px;
    min-height: 363px;
    background-color: #5c6e7f;
    position: fixed;
    right: 50px;
    z-index: 999999;
    bottom: -325px;
    -webkit-border-radius: 11px 11px 0 0;
    -moz-border-radius: 11px 11px 0 0;
    border-radius: 11px 11px 0 0;
    border: solid 2px #5c6e7f;
    text-align: center;
    color: #f3f3f3;
    padding: 0 10px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.top-controls {
  padding: 5px 0 0 0;
}
.note-text, .note-text:focus{
    font-size: 16px;
    background-color: #f3f3f3;
    color: #5c6e7f;
    width: 100%;
    border: none;
    border-top: solid 1px #DADADA;
    padding: 15px 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.note-box i:hover,.note-box:hover{
    cursor: pointer;
}

.note-box .note-title,.note-box .note-title:focus{
    font-size: 16px;
    background-color: #f3f3f3;
    color: #5c6e7f;
    width: 100%;
    border: none;
    padding: 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    margin-top: 7px;
    margin-bottom: 10px;

}
input#note-title:active, input#note-title:focus, textarea#note-text:active, textarea#note-text:focus {
  background: #fff;
}

.note-box .bottom-controls{
    position: absolute;
    z-index: 99999999;
    color: #f3f3f3;
    bottom: 0;
    width: 100%;
}

.note-box .bottom-controls .left{
    float: left;
    text-align: left;
    margin-left: 5px;
}

.note-box .bottom-controls .left i{
    margin-right: 15px;
}

.note-box .bottom-controls .right{
    float: right;
    padding-right: 15px;
}

.note-box  .top-controls .left,.note-box  .top-controls .middle{
    float: left;
    width: 33.33%;
    font-size: 15px;
}
.note-box  .top-controls .left{
    text-align: left;
    padding-left: 15px;
}
.note-box  .top-controls .right{
    float: right;
    width: 33%;
    font-size: 14px;
    text-align: right;
    padding-right: 15px;
}

#add-new-note{
  margin-right: 5px;
  transition: all 0.2s ease;
  color: #28B6B3;
  padding: 4px 0;
  border-radius: 3px;
}
#show-all-notes, i#trash-note {
  font-size: 25px;
  color: #F3F3F3;
  line-height: 46px;
  transition: all 0.2s ease;
}
#trash-note:hover, i#delete-this-note:hover {
  color: #E25555;
}
#show-all-notes:hover {
 color: #28B6B3;
}
#add-new-note i {
font-size: 30px;
  line-height: 39px;
}
#expand-controller i{
  font-size: 18px;
  vertical-align: middle;
  line-height: 4px;
}
#add-new-note:hover{
  color: #5C6E7F;
}
div#add-new-note span {
  line-height: 41px;
  margin-right: 5px;
  vertical-align: bottom;
  color: #fff;
  padding: 5px 20px;
  border-radius: 3px;
  background-color: #28B6B3;
}
div#add-new-note span:hover {
  background-color: #05B1AF;
}

#add-new-note:hover {
    color: #fff;
}

.animated {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-iteration-count:infinite;
    -webkit-animation-iteration-count:infinite;
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

#response-message{
    position: absolute;
    margin-top: -25px;
    color: #f3f3f3;
    background-color: #28b6b3;
    border-radius: 3px;
    padding-left: 15px;
    padding-right: 15px;
    left: 0;
    right: 0;
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
    display: none;
}

#save-progress{
    display: none;
}


#edit-note-title,#edit-note-body{
    width: 100%;
}

.tool-bar i{
    font-size: 22px;
    color: #28b6b3;
    margin-right: 15px;
    float: left;
}

.tool-bar i:hover{
    cursor: pointer;
}

i#edit-this-note:hover {
  color: #E2C536;
}
.note-list-item {
  list-style: none;
}
#note-content-loader h4{
    margin: 0;
}

.highlighted{
    border: solid 1px #28b6b3;
}

textarea:focus, input:focus{
    border: solid 1px #28b6b3;
}

#feed-back-message,#feed-back-d-message{
  position: absolute;
  display: none;
  width: auto;
  padding: 11px;
  padding: 0;
  color: #5C6E7F;
  border-radius: 5px;
  font-size: 15px;
  line-height: 15px;
}

/* Note archive Page */
input#edit-note-title[disabled] {
  background: #fff;
  border: none;
  font-size: 24px;
  font-weight: bold;
  padding: 0 13px;
}
textarea#edit-note-body {
  min-height: 300px;
  max-height: 100%;
  height: 100%;
  overflow: auto;
}
textarea#edit-note-body[disabled] {
  background: #fff;
  border: none;
  padding: 0 11px;
}
.hyper-notes-list {
  border-right: 1px solid #E6E6E6;
  padding-right: 10px;
}

.hyper-notes-contnet {

}
div#realtime-update-list {
  width: 99%;
}
ul.note-list-ul {
  margin: 0;
  width: 100%;
}
ul.note-list-ul li {
  border-bottom: 1px solid #e6e6e6;
  padding: 7px 12px;
}
ul.note-list-ul li:hover {
  background-color: #F3F3F3;
}
div#note-content-loader h4 {
  border-bottom: none;
    padding-bottom: 5px;
}
.hyper-notes section {
  display: none;
  padding: 3px 0px 20px 0px;
  border-top: 1px solid #5C6E7F;
  /*background: #F3F3F3;*/
  border-radius: 0 0 3px 3px;
  min-height: 300px;
}
.hyper-notes input#tab1, .hyper-notes input#tab2 {
  display: none !important;
}
.hyper-notes label {
  display: inline-block;
  margin: 0 0 -1px;
  width: 49%;
  padding:5px;
  box-sizing: border-box;
  font-weight: 600;
  text-align: center;
  color: #bbb;
  border: 1px solid transparent;
}
.tool-bar {
  padding: 0 15px;
}
.tool-bar-bottom {
  width: 100%;
  clear: both;
  margin-top: 15px;
  padding: 0 15px;
}
.hyper-notes label:hover {
  color: #5C6E7F;
  cursor: pointer;
}
.hyper-notes  input:checked + label {
  color: #ffffff;
  border: 1px solid #5C6E7F;
  border-radius: 5px 5px 0 0;
  background: #5C6E7F;
  border-bottom: 1px solid #5C6E7F;
}
#tab1:checked ~ .tab-content #content1,
#tab2:checked ~ .tab-content #content2 {
  display: block;
}