﻿@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}



body {
    padding-top: 50px;
    padding-bottom: 20px;
}

.nav-item a {
    color: #d7d7d7;
    border-radius: 4px;
    height: 3rem;
    display: flex;
    align-items: center;
    line-height: 3rem;
}

    .nav-item a.active {
        background-color: rgba(255,255,255,0.25);
        color: white;
    }

    .nav-item a:hover {
        background-color: rgba(255,255,255,0.1);
        color: white;
    }

.content {
    padding-top: 1.1rem;
}

.navbar-toggler {
    background-color: rgba(255, 255, 255, 0.1);
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

@media (min-width: 768px) {

    .navbar-toggler {
        display: none;
    }
}

.Render-Container {
    width: 100%;
    height: auto;
    padding-top: 25px;
    padding-left: 20px;
    padding-right: 10px;
    padding-bottom: 15px;
    position: absolute;
    z-index: 1;
}

.Crumbs-Container {
    height: 20px;
    line-height: 20px;
    text-align: right;
    z-index: 10;
}

.Render-Content {    
    display: flex;
}

.Render-Area {
    width: 100%;
    padding-left: 10px;
    padding-top: 10px;
    text-align: left;
}

/* 
    https://www.w3schools.com/howto/howto_css_breadcrumbs.asp
    
    Style the list */
ul.breadcrumbs {
    padding: 1px 16px;
    list-style: none;
}

    /* Display list items side by side */
    ul.breadcrumbs li {
        display: inline;
        font-size: 18px;
    }

        /* Add a slash symbol (>) before/behind each list item */
        ul.breadcrumbs li + li:before {
            padding: 8px;
            content: "\\";
        }

        /* Add a color to all links inside the list */
        ul.breadcrumbs li NavLink {
            text-decoration: none;
        }

            /* Add a color on mouse-over */
            ul.breadcrumbs li NavLink:hover {
                text-decoration: underline;
            }



/* Add padding and center-align text to the container */
.fh-modal-container {
    padding: 16px;
    text-align: center;
}

/* The Modal (background) */
.fh-modal-bg {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.75); /* Black w/ opacity */
    padding-top: 50px;
}

/* Modal Content/Box */
.fh-modal-content {
    background-color: #6f7571;
    padding: 20px;
    text-align: center;
    margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
}


/* The Modal Close Button (x) */
.fh-modal-close {
    position: absolute;
    right: 35px;
    top: 15px;
    font-size: 40px;
    font-weight: bold;
    color: #f1f1f1;
}

    .fh-modal-close:hover,
    .fh-modal-close:focus {
        color: #f44336;
        cursor: pointer;
    }

/* Clear floats */
.fh-modal-clearfix::after {
    content: "";
    clear: both;
    display: table;
}

/* file drag and drop */
.dropArea {
    border: 2px dashed steelblue;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: lightblue;
    font-size: 1.5rem;
    cursor: pointer;
    position: relative;
    min-height: 200px;
}

    .dropArea:hover {
        background-color: lightskyblue;
        color: #333;
    }

    .dropArea input[type=file] {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        cursor: pointer;
    }

.dropAreaDrug {
    background-color: lightseagreen;
}