.loginWrapper{
    display: flex;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    align-items: center;
    background-color: grey;
}

.wrapper{
    height: 100%;
    width: 100%;
    margin: 0 20px 0 20px;
}

body {
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
}

/**************************Login***************************/
.loginform {
     width: 30%;
     height: 50%;
     font-family: Arial, Helvetica, sans-serif;	/* Font/style used in div */
     font-size: 16px;
     font-weight: bold;
     color: white;
     border-radius: 5px;						/* Rounds border corners */
     background-color: #21262d;
     box-shadow: 0 0 8px black;
     resize: both;
     /*overflow: auto;*/
     margin: auto;
     display: flex;
     align-items: center;
     justify-content: center;
}

.loginform h2 {
    text-align: center;
}

.loginform #username {
    width:100%;
}

.loginform #password {
    width:100%;
}

#loginform{
    display: flex;
    flex-direction: column;
    padding: 30px;
}

.loginform input[type=text], input[type=password] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
    border-radius: 4px;
}

.loginform input[type=submit] {
    width: 100%;
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.loginform form{
    width:100%;
}

/************************Main Menu Nav**********************/

.myDropdown {
    float: right;
    overflow: hidden;
}

.myDropdown .dropButton {
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit; /* Important for vertical align on mobile phones */
    margin: 0; /* Important for vertical align on mobile phones */
}

.dropdownContent {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

/* Show the dropdown menu on hover */
.myDropdown:hover .dropdown-content {
    display: block;
}

.navbar a {
    color: white;
}

.dropdown-menu a{
    color: black;
}

.navheader > * {
    margin-top: auto;
    margin-bottom: auto;
}

.dropdownContent a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.menuItemsBar > ul li, .row > ul li, .menuBar > ul li {
    display: flex;
    list-style: none;
    font-size: 24px;
    margin-right: 20px;
    box-sizing: border-box;
    border-radius: 5px;
    box-shadow: 0 1px 3px 1px #BEBEBE;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding-left: 15px;
    padding-right: 15px;
    user-select: none;
}

.menuItemsBar > ul li:hover, .row > ul li:hover, .menuBar > ul li:hover {
    background-color: darkgrey;
}

.menuItemsBar > ul, .userDetails > ul, .menuBar > ul {
    padding-left: 0;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.menuItemsBar {
    padding-left: 30px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-top: 40px;
}

.row > ul{
    display:flex;
}

#claimUL {
    margin-left: auto;
}

.navheader{
    overflow: hidden;
    background-color: #333;
    font-family: Arial;
    display: flex;
    justify-content: space-between;
}


#groupLink{
    background-color: darkgrey;
}

.modal-title{
    white-space: nowrap;
    text-overflow: ellipsis;
    display: inline;
    overflow: hidden;
}

/**************Main Focus Stuff******************/

.mainContainer{
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 800px;
    padding-left: 30px;
}

.foci{
    display: none;
    height: 100%;
    max-width: 800px;
    width:60%;
    flex-basis: 10%;
    flex-wrap: wrap;
    flex-direction: column;
}

.focus{
    display: flex;
    height: 100px;
    margin-top: .875em;
    margin-bottom: .875em;
    width: 40%;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border-radius: 5px;
    box-shadow: 0 1px 3px 1px #BEBEBE;
    overflow: hidden;
}

.focus:hover{
    background-color: darkgrey;
}

.myRow{
    display:flex;
    flex-direction: row;
    align-items: center;
}

.selectClose{
    float: none;
    margin-left: 10px;
    position: static;
    color: #aaaaaa;
    font-size: 28px;
    font-weight: bold;
    top:0;
    right:0;
    margin-right: 5px;
}

.breadcrumb{
    width: fit-content;
    background-color: transparent;
}

.breadcrumb-item{
    font-size: 2rem;
    font-weight: bold;
}

.crumbLink{
    color: #007bff;
}

.breadCrumbGroup{
    padding-left: 0;
}

.breadcrumb li{
    display: inline;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 250px;
}

/************Form Stuff**************/

#creationForm{
    display: flex;
    height: 100%;
    max-width: 800px;
    width:60%;
    flex-basis: 10%;
    flex-wrap: wrap;
}

#creationForm label{
    display:flex;
    align-items: center;
    padding-right: 5px;
    break-after: left;
}

#creationForm #createGroupSubmit{
    margin-top: auto;
    margin-left: auto;
}

.cancelGroup {
    /*margin-left: auto;*/
    /*margin-bottom: auto;*/
    position: relative;
    align-self: flex-start;
}

.addButton{
    margin-top: 5px;
    padding-top:10px;
    padding-bottom: 10px;
    margin-bottom: 5px;
    align-self: flex-start;
}

.selectSubmit{
    margin-left: auto;
}

.claimButton{
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: auto;
    height: 40%;
    border-radius: 4px;
    background-color: white;
    border: 2px solid darkgrey;
    font-size: 16px;
}

.groupButton{
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: auto;
    height: 40%;
    border-radius: 4px;
    background-color: white;
    border: 2px solid darkgrey;
    font-size: 16px;
}

#claimOther{
    margin-left: auto;
}

.claimButtonPopup{
    height: 100%;
    background-color: white;
    border: 1px solid darkgrey;
    font-size: 16px;
    width:50%;
    margin-bottom: 0;
    margin-top: 0;

}

#modalForm{
    margin:0;
}

.addContainer{
    display: none;
}

.groups{
    display: flex;
    height: 100%;
    max-width: 800px;
    width:60%;
    flex-basis: 10%;
    flex-wrap: wrap;
    flex-direction: column;
}

.group{
    display: flex;
    height: 100px;
    margin-top: .875em;
    margin-bottom: .875em;
    width: 40%;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border-radius: 5px;
    box-shadow: 0 1px 3px 1px #BEBEBE;
}

.group:hover{
    background-color: darkgrey;
}

/************Framework Stuff**************/

.framework{
    display: flex;
    height: 100px;
    margin-top: .875em;
    margin-bottom: .875em;
    width: 40%;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border-radius: 5px;
    box-shadow: 0 1px 3px 1px #BEBEBE;
}

.framework:hover{
    background-color: darkgrey;
}

.frameworks{
    display: flex;
    height: 100%;
    max-width: 800px;
    width:60%;
    flex-basis: 10%;
    flex-wrap: wrap;
    flex-direction: column;
}

.groupSelect{
    margin-top: 5px;
    margin-bottom: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.break{
    flex-basis: 100%;
    height:0;
    width:100%;
}



/**************Modal**************/

#myModal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    justify-content: center;
    align-items: center;
}

/* Modal Content */
#myModal-content {
    background-color: #fefefe;
    margin: 0 auto;
    /*padding-left: 10px;*/
    /*padding-right: 10px;*/
    border: 1px solid #888;
    width: 20%;
    position: relative;
    height: 10%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#modalButtonContainer{
    display:flex;
    margin: 0 auto;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    flex:1;
    background-color: #fefefe;
    border: 1px solid #888;
}
/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    top:0;
    right:0;
    margin-right: 5px;
    position:absolute;
    z-index: 2;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
/********************Focus****************************/
.table{
    width: 100%;
    table-layout: fixed;
}

.table td,
.table th{
    width: auto !important;
    white-space: normal;
    text-overflow: ellipsis;
    overflow: hidden;
}

table td, table th {
    border: 1px solid #ddd;
    padding: 4px;
    text-align: center;
}

table td{
    text-align: center;
}

table td:nth-child(1){
    width:5%;
}

table tr:hover {background-color: #ddd;}

table th {
    padding-top: 4px;
    padding-bottom: 4px;
    text-align: left;
    background-color: black;
    color: white;
}

/*************************USER**********************/

.userContainer{
    display: grid;
    grid-template-columns: 15% auto;
    grid-template-rows: auto 30% 30% auto;
    grid-template-areas:
        ". ."
        "userImage userDetails"
        "userBasicStats userDetails"
        ". .";
    height: 100%;
    padding-left: 40px;
    padding-top: 40px;
}

.userImage{
    border: #21262d;
    border-radius: 2px;
    grid-area: userImage;
    position: relative;
    width:100%;
}

.userBasicStats{
    border: #21262d;
    border-radius: 2px;
    grid-area: userBasicStats;
}

.userDetails {
    border-color: black;
    border-radius: 2px;
    border: 1px solid;
    grid-area: userDetails;
    margin-left: 60px;
    padding-left: 10px;
}

.userDetails:not(ul li){
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}

.image {
    width: 100%;
    height: auto;
}

.userImage img{
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
}

.fa-camera{
    position: absolute;
    z-index: 9;
    left: 50%;
    top: 100%;
    transform: translate(-50%, -100%);
}

.fa-camera:hover{
    color: darkgrey;
}


/* The overlay effect (full height and width) - lays on top of the container and over the image */
.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .3s ease;
    background-color: red;
}

/* When you mouse over the container, fade in the overlay icon*/
.container:hover .overlay {
    opacity: 1;
}

/* The icon inside the overlay is positioned in the middle vertically and horizontally */
.icon {
    color: white;
    font-size: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
}

/* When you move the mouse over the icon, change color */
.fa-user:hover {
    color: #eee;
}

/******************ADMIN****************/

.adminContainer{
    display:flex;
    flex-direction: column;
    /*justify-content: center;*/
    /*align-items: center;*/
    /*position: absolute;*/
    /*top: 50%;*/
    /*left: 50%;*/
    /*margin-right: -50%;*/
    /*transform: translate(-50%, -50%);*/
    border-radius: 5px;
    box-shadow: 0 1px 3px 1px #BEBEBE;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
}

.col-sm-10{
    padding-bottom: 15px;
}

.chip {
    display: inline-block;
    padding: 0 20px;
    height: 40px;
    font-size: 16px;
    line-height: 40px;
    border-radius: 20px;
    background-color: #f1f1f1;
}

#greenChip{
    background-color: #4CAF50;
}

.chipClose {
    padding-left: 10px;
    color: #888;
    font-weight: bold;
    float: right;
    font-size: 20px;
    cursor: pointer;
}

.chipClose:hover {
    color: #000;
}

select.bs-select-hidden, .bootstrap-select > select.bs-select-hidden, select.selectpicker {
    visibility: hidden;
}

.vertical-center {
    min-height: 100%;  /* Fallback for browsers do NOT support vh unit */
    min-height: 100vh; /* These two lines are counted as one :-)       */
    justify-content: center;
    display: flex;
    align-items: center;
}

textarea {
    resize: none;
}

.countMessage {
    margin-top: -20px;
    margin-right: 5px;
}

@media only screen and (min-width: 1024px){
    /*.navheader {*/
    /*    background: #21262d;	!* Colour of header *!*/
    /*    padding: 10px;			!* Ensures nothing encroaches it *!*/
    /*    box-shadow: 0 0 8px black;*/
    /*    height: 100px;*/
    /*    width: 100%;*/
    /*    display: flex;*/
    /*    align-content: center;*/
    /*    justify-content: right;*/
    /*}*/

    /*.navheader h2{*/
    /*    padding-right: 20px;*/
    /*    margin:auto;*/
    /*}*/

    /*.wrapper{*/
    /*    !*height: 100%;*!*/
    /*    width: 600px;*/
    /*    margin: 0 auto;*/
    /*}*/
}


