html {
    height: 100%;
    min-height: 100%;
}

body {
    font-family: 'Arial';
    height: 100%;
    min-height: 100%;
    width: 100%;
    background-attachment: fixed!important;
    background-size: cover!important;
    margin: 0;
    position: absolute;
    top: 0;
}
@media(max-width: 670px) {
    body {
        background-size: cover!important;
    }
}

.hidden {
	display: none !important;
}

.full-width {
    width: 100%;
}

.full-height {
    height: 100%;
}

.text-center {
    text-align: center;
}

.content-wrapper {
    position: absolute;
    top: 0;
}

.btn-std {
    width: 150px;
    height: 65px;
    font-size: 20px;
    color: white;
    background-color: #4a4af7;
    border-radius: 0;
    cursor: pointer;
    border-width: 0px;
    text-transform: uppercase;
}

.btn-std:hover {
    background-color: #2f2f96;
}

.form-wrapper {
    max-width: 40%;
    margin-left: 30%;
}

.custom-form-input {
    width: 99%;
    font-size: 20px;
    display: block;
    border-width: 0;
    padding: 5px;
	margin-bottom: 10px;
}

.search-button {
    display: none;
}

@media(max-width: 670px) {
    .form-wrapper {
        max-width: 95%;
        margin: 0 auto;
    }

    .custom-form-input {
        width: 96%;
        height: 55px;
        font-size: 22px;
        margin-left: auto;
        margin-right: auto;
    }

    .search-button {
        display: initial;
    }
}

.form-input-textarea {
    height: 300px;
}

.note-tag {
    display: inline-block;
    font-size: 18px;
    background-color: #072C64;
	color: white;
    margin: 10px;
    padding: 10px;
    cursor: pointer;
}

.mt-sm {
    margin-top: 20px;
}

.mt-md {
    margin-top: 50px;
}

.mt-lg {
    margin-top: 100px;
}

.mb-sm {
    margin-bottom: 20px;
}

.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

.result-category-divider {
    width: 100%;
    font-size: 25px;
    padding: 10px;
    background-color: white;
    margin-top: 40px;
    margin-bottom: 10px;
    opacity: 0.5;
}

.result-category-item-count {
    font-size: 15px;
    position: relative;
    bottom: 3px;
    left: 15px;
}

.search-result-container {
    width: 60%;
    margin: 100px 20%;
}

.search-result-container-dashboard {
    width: 60%;
    margin: 20px 20%;
}

.search-result {
    position: relative;
    width: 100%;
    background-color: white;
    text-align: left;
    padding: 10px;
    margin-bottom: 10px;
}

.search-result-dashboard {
    width: 60%;
	margin-left: 20%;
}
@media(max-width: 670px) {
    .search-result-container {
        width: 90%;
        margin: 0 auto 10px auto;
    }

    .search-result-dashboard {
        width: 90%!important;
        margin: 0 auto 10px auto;
    }

    .search-result {
        width: 95%;
    }

    .result-category-divider {
        width: 95%;
    }
}

.result-content {
    font-size: 14px;
    padding: 5px;
    font-family: Arial!important;
    overflow: scroll;
}

.result-content pre {
    font-family: Arial!important;

    white-space: pre-wrap;       /* Since CSS 2.1 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word;       /* Internet Explorer 5.5+ */
}

.result-title {
    font-size: 20px;
    padding: 5px;
    border-bottom: 1px solid grey;
    margin-bottom: 10px;
}

.result-tag {
    font-size: 15px;
    display: inline-block;
    margin: 0 5px;
    padding: 5px;
    background-color: #ececec;
}
@media(max-width: 670px) {
    .result-content {
        font-size: 16px;
    }

    .result-title {
        font-size: 22px;
    }

    .result-tag {
        margin-bottom: 10px;
    }
}

.search-result-description {
    font-size: 15px;
    color: grey;
    padding-right: 15px;
}

.pointer {
    cursor: pointer;
}

.result-modify-note {
    background-image: url(/images/wrench.png);
    background-size: cover;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    position: absolute;
    top: 10px;
    right: 10px;
}

.result-modify-note:hover {
    border: 1px solid grey;
}

.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 90;
    background-color: black;
    opacity: 0.85;
    display: none;
}

.nav {
    height: 80%;
    width: 60%;
    margin-left: 20%;
    margin-top: 5%;
}

.nav-item {
    display: inline-block;
    height: 100%;
    height: 100%;
    width: 33%;
    margin: 0;
    opacity: 1;
    color: white;
    font-size: 30px;
    position: relative;
}
@media(max-width: 670px) {
    .nav {
        height: 90%;
        width: 90%;
        margin-left: 5%;
        margin-top: 5%;
    }

    .nav-item {
        width: 32%;
        height: 95%;
        font-size: 18px;
    }

    .nav-info {
        display: none;
    }
}

.nav-item:hover {
	background-color: #041530;
}

.nav-left {
	background-color: #0D4DB1;
}

.nav-center {
	background-color: #0A3C8A;
}

.nav-right {
	background-color: #072C64;
}

.nav-item-text {
    height: 100px;
    width: 100%;
    position: absolute;
    top: 45%;
    text-align: center;
}

.auth-button-text {
    width: 100%;
    top: 45%;
    text-align: center;
}
@media(max-width: 670px) {
    .nav-item-text {
        height: initial;
        width: 100%;
        position: absolute;
        top: 30%;
        text-align: center;
    }

    .auth-button-text {
        height: initial;
        width: 100%;
        position: absolute;
        top: 30%;
        text-align: center;
    }
}

.nav-info {
    font-size: 17px;
}

.nav-trigger {
    position: fixed;
	top: 0;
    right: 0;
    height: 100%;
    width: 7%;
    background-color: white;
    opacity: 0.3;
    font-size: 30px;
    z-index: 100;
}
@media(max-width: 670px) {
    .nav-trigger {
        position: absolute;
        height: 75px;
        width: 20%;
        background-color: white;
        opacity: 0.3;
        font-size: 30px;
    }
}

.auth-button {
    background-color: white;
    opacity: 0.3;
    font-size: 20px;
    position: fixed;
    top: 0;
    left: 0;
    padding: 10px;
    color: black;
    text-decoration: none;
    width: 6%;
    z-index: 100;
}
@media(max-width: 670px) {
    .auth-button {
        position: absolute;
        height: 75px;
        width: 20%;
        padding: 0;
        text-align: center;
    }
}

.trumbowyg-editor {
	background-color: white!important;
    text-align: left;
    font-family: Arial;
}

@media(max-width: 670px) {
    .trumbowyg-box {
        width: 98%!important;
        margin-left: 0!important;
        margin-right: 0!important;
    }
}

.login-link-container {
    text-align: center;
    width: 100%;
    margin-top: 100px;
}

.login-link {
    color: white;
	background-color: #0D4DB1;
    text-transform: uppercase;
    padding: 20px;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 15px;
}

.previous-notes-container {
    position: fixed;
    top: 200px;
    left: 20px;
    min-width: 300px;
}

.previous-notes-header {
    font-size: 20px;
    text-align: center;
    position: absolute;
    top: -25px;
    width: 100%;
}

.previous-note {
    padding: 5px;
    margin: 5px;
    background-color: white;
    opacity: 0.7;
    cursor: pointer;
}

@media(max-width: 670px) {
    .previous-notes-container {
        position: relative;
        margin-top: 60px;
        top: initial;
        left: initial;
    }
    .previous-notes-header {
        display: none;
    }
}

.login-message {
    font-size: 28px;
    margin-top: 50px;
}

.landing-description-container {
    width: 40%;
    margin: 50px auto;
    background-color: rgba(255,255,255,0.6);
    padding: 30px;
}

.description-header {
    font-size: 22px;
    margin: 0 auto 20px auto;
    width: 80%;
    border-bottom: 1px solid grey;
    padding-bottom: 10px;
}

.description-text {
    font-size: 18px;
    line-height: 1.4;
}
@media(max-width: 670px) {
    .landing-description-container {
        width: 80%;
    }

    .description-header {
        font-size: 26px;
        width: 90%;
    }
}

.footer-container {
    width: 100%;
    position: absolute;
    bottom: 0;
    text-align: center;
}

.footer-text {
    color: #565656;
    font-size: 14px;
}
@media(max-width: 670px) {
    .footer-container {
    }

    .footer-text {
        font-size: 12px;
    }
}

/* Dropzone CSS settings. */
.dz-progress {
    display: none!important;
}

.dropzone-toggle-btn {
    background-color: rgba(255, 255, 255, 0.6);
    padding: 10px;
    cursor: pointer;
}

.dropzone {
    display: none;
    border: none!important;
}

.dz-message {
    color: grey;
}

.file-container {
    background-color: rgba(255, 255, 255, 0.6);
    padding: 10px;
}

.file-remove-btn {
    cursor: pointer;
}

.image-preview {
    height: 100px;

}

.result-image {
    max-width: 100%;
}

.result-image-container {
    position: relative;
    margin-bottom: 15px;
}

.result-image-download-container {
    margin-left: 5px;
    font-size: 14px;
}

.result-image-toggle-btn {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 20px;
    background-color: rgba(10, 10, 10, 0.6);
    cursor: pointer;
    font-size: 25px;
    color: white;
}

.result-image-collapsed {
    max-height: 150px;
}

.notify-message {
	display: none;
    width: 100%;
    position: absolute;
    top: 0;
    color: white;
    background-color: rgba(10, 10, 10, 0.6);
    text-align: center;
    padding: 10px;
    margin: 0;
}

.result-remove-note-container {
    position: absolute;
    top: 10px;
    right: 50px;
}

.remove-note-btn {
    background-size: cover;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: inline-block;
}

.remove-note-btn:hover {
    border: 1px solid grey;
}

.remove-note-btn-first {
    background-image: url(/images/bin.png);
}

.remove-note-btn-second {
    background-image: url(/images/check.png);
}

.remove-note-btn-cancel {
    background-image: url(/images/cancel.png);
}

.tag-message {
    background-color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
    padding: 10px;
}

.landing-logo-container {
    text-align: center;
    margin-top: 30px;
}
