﻿html {
    height: 100%;
}

body {
    height: 100%;
    margin: 0;
    overflow: hidden;
    background-color: #f2f3f5;
    font-family: 'Arial';
    font-weight: bold;
}

/*html {
    font-family: 'RockoUltraFLF', sans-serif;
}
*/
/*@font-face {
    font-family: 'RockoUltraFLF';
    src: url('file:///C:\Users\claireclarke\Source\Repos\JoelOrr5\Sprout-Careers-App\wwwroot\fonts\RockoUltraFLF.ttf') format('truetype');
}*/



#appBar {
    height: 56px;
    background-color: #454b5e !important;
}

.border-bottom {
    border-bottom: 1px solid #454b5e !important;
}

#sideNav {
    width: 15rem;
    height: 100%;
    flex-shrink: 0;
    z-index: 1000000;
    transition: margin ease-in-out 0.25s;
    background-color: #454b5e; /*#8aef5f #1d1d39 #03dc02 #366*/
    display: flex;
    flex-direction: column;
}

    #sideNav.hidden {
        animation-name: sideNavMoveHide;
        animation-duration: 0.25s;
        animation-fill-mode: forwards;
        animation-timing-function: ease-out;
        margin-left: -15rem;
    }

    #sideNav.show {
        animation-name: sideNavMoveIn;
        animation-duration: 0.25s;
        animation-fill-mode: forwards;
        animation-timing-function: ease-out;
        margin-left: 0rem!important;
    }

@media screen and (max-width: 768px) {
    #sideNav {
        margin-left: -15rem;
        position: absolute;
        z-index: 2000;
        top: 55px;
        left: 0;
        height: calc(100vh - 55px);
    }
}

@keyframes sideNavMoveIn {
    0% {
        display: flex;
    }
    to {
        display: flex;
    }
}

@keyframes sideNavMoveHide {
    to {
        display: none !important;
    }
}

main {
    flex-grow: 1;
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

#root {
    overflow: hidden;
    margin: 0;
    display: flex;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding-top: 55px;
}

#contentContainer {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #ffffff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
}

.navbar-light .navbar-brand {
    color: #f2f3f5;
    

}


.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #1d1d39;
    background-color: #03dc02;
}

.navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: #f2f3f5;
    border: 1px solid transparent;
    border-radius: .25rem;
    transition: box-shadow .15s ease-in-out;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: url(~/images/SproutIconFullColour.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.navbar-light .navbar-toggler {
    color: #ffff;
    border-color: rgba(0,0,0,.1);
}

.navbar-light .navbar-toggler {
    color: #0000;
    border-color: rgba(0,0,0,.1);
}

.navbar-light .navbar-toggler-icon {
    background-image: src(data:image/~/images/SproutIconFullColour.png) !important;
}

.navbar-light .navbar-nav .nav-link {
    color: #f2f3f5;
}

.link-dark {
    color: #f2f3f5;
}
.login-link {
    color: #000000;
}

.link-dark:focus, .link-dark:hover {
    color: #03dc02;
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    color: #f2f3f5;
}

.btn-primary {
    color: #fff;
    background-color: #1d1d39 !important;
    border-color: #454B5E !important;
}

a.button.div.container{
    float:left;
}

a.LinkButton {
    display: flex;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: #1d1d39 !important;
    border: 1px solid #454B5E !important;
    padding: 5px 65px 10px 117px;
    font-size: 1rem;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.table {
    --bs-table-bg: transparent;
    --bs-table-accent-bg: transparent;
    --bs-table-striped-color: #212529;
    --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
    --bs-table-active-color: #212529;
    --bs-table-active-bg: rgba(0, 0, 0, 0.1);
    --bs-table-hover-color: #212529;
    --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
    width: auto !important;
    /*margin-bottom: 1rem;*/
    color: #212529;
    vertical-align: top;
    border-color: #dee2e6;
}