/* FORMULÁŘ NA ZALOŽENÍ NOVÉ POZNÁMKY */
#notes-create-new-section-hidder {
    width: 100%;
    height: 43px;
    background-image: url(../media/notes/button-off.png);
    background-position: center top;
    background-repeat: no-repeat;
    font-size: 0.9rem;
    font-weight: 600;
    color: #cd853f;
    text-shadow: 2px 2px black;
    text-align: center;
    cursor: pointer;
    padding-top: 9px;
    transition: 0.1s ease-in-out;
}

#notes-create-new-section-hidder:hover {
    background-image: url(../media/notes/button-on.png);
    transition: 0.1s ease-in-out;
    color: #ffffff;
}

#notes-create-new-section {
    /* border: 1px solid #cd853f; */
    width: 325px;
    height: 312px;
    margin: 0 auto;
    /*background-image: url(../media/notes/notes1.png);*/
}

.new-note-header {
    padding: 10px 38px 0px 32px;
}

.new-note-time {
    float: left;
    color: #000000;
    margin: 5px 0px 0px 0px;
}

.new-note-type {
    float: right;
}

.new-note-type select {
    width: 85px;
    background-color: transparent;
    border: 1px solid #221307;
}

.new-note-type option {
    background-color: #221307;
    color: #cd853f;
}

.new-note-subject {
    margin: 5px 0px 0px 32px;
}

.new-note-subject input {
    width: 255px;
    background-color: transparent;
    border: 1px solid #221307;
    color: black;
}

.new-note-text {
    margin: 5px 0px 0px 31px;
}

.new-note-text textarea {
    background-color: transparent;
    resize: none;
    width: 257px;
    height: 200px;
    border: 1px solid #221307;
    color: black;
}

.new-note-submit-button {
    margin: 40px 100px 0px 100px;
}

.new-note-submit-button button {
    padding: 2px 20px 2px 20px;
    background-color: #221307;
    color: #cd853f;
    font-weight: bold;
    border-style: outset outset outset outset;     
}

.new-note-submit-button button:hover {
    padding: 3px 20px 2px 20px;
    border-style: inset inset inset inset;
}


/* VÝPIS EXISTUJÍCÍCH POZNÁMEK */
#notes-container {
    margin-top: 20px;
    margin-left: 15px;    
    display: inline-flex;
    flex-wrap: wrap;
    width: 100%;
}

.player-notes {
    background-repeat: no-repeat;
    background-position: center top;
    /* border: 1px solid #cd853f; */
    overflow: hidden;
    width: 325px;
    height: 312px;
    padding: 15px 0px 0px 0px;
}

.player-note-header {
    color: #000000;
    padding: 0px 12px 0px 12px;
}

.player-note-header-dates {
    float: left;
    margin: 5px 0px 0px 10px;
}

.player-note-header-controls {
    float: right;
    cursor: pointer;
}

.player-note-subject {
    color: #000000;
    padding: 10px 32px 0px 40px;
    font-weight: bold;
}

.player-note-content {
    color: #000000;
    padding: 0px 0px 0px 30px;
    overflow: hidden;
    text-align: justify;
    height: 210px;
    width: 262px;
}

.player-note-style-1 {
    background-image: url(../media/notes/notes1.png);
}

.player-note-style-2 {
    background-image: url(../media/notes/notes2.png);
}

.player-note-style-3 {
    background-image: url(../media/notes/notes3.png);
}

.player-note-style-4 {
    background-image: url(../media/notes/notes4.png);
}

@media screen and (max-width: 1899px) {
    .player-notes {
        margin: 0px 30px 20px 10px;
    }
}

@media screen and (min-width: 1900px) {
    .player-notes {
        margin: 0px 23px 20px 0px;
    }
}

.note-state-highlight {
    width: 325px;
    height: 312px;
    border: 1px solid #63391b !important;
    background-color: #100903 !important;
    margin: 0px 21px 20px 0px;
}

/* ////////////////////////////////////////////////////////////////////////// */
#notes-top-menu {
    width: 100%;
    float: right;
    border: 0px dotted magenta;
}

#notes-top-menu button {
    float: right;
    margin-right: 40px;
}

#note-new-edit-window {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: -195px;
    margin-top: -124px;
    padding: 20px 40px 50px 40px;
    width: 411px;
    height: 388px;
    background-color: #000000;
    border: 3px double #cd853f;
    z-index: 101;
    background-image: url(../media/notes/notes1.png);
    background-repeat: no-repeat;
    background-size: cover;
}

#notes-window-header-right {
    float: right;
    margin-right: -35px;
    margin-top: -8px;
}

#notes-button-closer {
    margin-right: 0px;
    border: 0px solid rgba(205, 134, 63, 0.75);
    border-radius: 0px 0px 0px 5px;
    background-color: transparent;
    padding: 3px 7px 3px 7px;
    color: rgba(0, 0, 0);
    font-size: small;
}
