:root {
    --blue: #0A48B3;
    --indigo: #5603ad;
    --purple: #8965e0;
    --pink: #f3a4b5;
    --red: #f5365c;
    --orange: #fb6340;
    --yellow: #ffd600;
    --green: #2dce89;
    --teal: #11cdef;
    --cyan: #2bffc6;
    --white: #fff;
    --ash: #bbb;
    --gray: #8898aa;
    --gray-dark: #32325d;
    --light: #ced4da;
    --lighter: #e9ecef;
    --primary: #0A48B3;
    --secondary: #f7fafc;
    --success: #2dce89;
    --info: #11cdef;
    --warning: #fb6340;
    --danger: #f5365c;
    --dark: #212529;
    --darker: #141414;
    --black: #000;
    --default: #172b4d;
    --neutral: #fff;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: Open Sans, sans-serif;
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

body{
	background: var(--black);
	font-family: 'Montserrat';
	overflow-x: hidden;
    color: #f0f0f0;
}

.form-control{
    background: rgba(0,0,0, 0.2);
    border: 1px solid #666;
    color: #eee;
}

.form-control:focus{
    background: rgba(0,0,0, 0.2);
    border: 1px solid #666;
    box-shadow: none;
    color: #f0f0f0;
}

.note-editor{
    border: 1px solid #666 !important;
    border-radius: 5px;
}

.note-editor .panel-heading{
    border-bottom: 1px solid #222;
}

.note-editor .note-btn{
    color: #ccc;
    background: #666 !important;
}

.header-btns .btn{
    padding: 10px 15px;
}

@media(max-width: 567px){
    .header-btns .btn{
        padding: 7px 10px;
    }
}

.menu-toggle{
    cursor: pointer;
}

.navMenu{
    background-image: linear-gradient(to right, #151515, #101010);
    width: 300px;
    position: fixed;
    left: 0;
    bottom: 0;
    top: 55px;
    z-index: 10;
}

@media(max-width: 768px){
    .navMenu{
        width: 250px;
    }
}

@media(max-width: 320px){
    .navMenu{
        width: 200px;
    }
}

.navMenu ul{
    list-style: none;
    padding: 10px;
    padding-left: 20px;
    width: 100%;
}

.navMenu ul li{
    background: rgba(0,0,0, 0.5);
    border-radius: 5px;
    padding: 5px 10px;
    width: 100%;
    margin-bottom: 18px;
}

.navMenu ul li a{
    color: #ccc;
    font-size: 20px;
}

.btn-yellow{
    background: #e7d823 !important;
}

.btn-yellow:focus{
    background: #e7d693 !important;
}

.btn-yellow:active{
    background: #e7d693 !important;
}

.user-image{
    margin-top: 0;
    border-radius: 50% !important;
    height: 35px;
    width: 35px;
    padding: 0 !important;
}

.user-image .fa{
    margin: 5px;
    font-size:  20px;
}

.user-image img{
    width: 100%;
    height: 100%;
}

.img-responsive{
    width: 200px;
}

#noteViewer .custom-note, #binViewer .custom-note{
    width: 50%;
    float: left;
    height: auto;
    padding: 10px;
}

.note-display{
    padding: 10px;
    border: 1px solid #222;
    border-radius: 5px;
    width: 100%;
    height: auto;
    display: inline-block;
    overflow: hidden;
    cursor: pointer;
    float: left;
    color: #eee;
    font-size: 12px;
}

@media(max-width: 768px){
    #noteViewer{
        padding: 3px;
    }
    #noteViewer .custom-note, #binViewer .custom-note{
        padding: 5px 3px;
    }
}

.note-display .note-title{
    border-bottom: 1px solid #111;
    padding-bottom: 5px;
    font-size: 16px;
}

@media(max-width: 450px){
    h2{
        font-size: 32px;
    }

    .btn{
        padding: 7px 10px;
    }
}

#fullNote .note-area{
    border: 1px solid #333;
    padding: 20px 10px;
    border-radius: 5px;
    width: 100%;
}

#fullNote .note-area .title{
    border-bottom: 1px solid #222;
    padding-bottom: 10px;
}

.color-smoke{
    color: whitesmoke;
}

.color-light{
    color: var(--light);
}

.notification-log{
    position: fixed;
    bottom: 15px;
    width: 100%;
}

.notification-log span{
    padding: 10px 20px;
    background: #444;
    border-radius: 25px;
}

/*ALERT CSS CONFIG*/

.body-overlay{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 200;
}

.custom-alert{
    position: fixed;
    z-index: 201;
    height: auto;
    width: auto;
    max-width: 80%;
    background: #222;
    border: 1px solid #444;
    border-radius: 5px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--light);
}