html,
body {
    margin: 0;
    padding: 0;
}
body {
    color: #292929;
    font: 90% Roboto, Arial, sans-serif;
    font-weight: 300;
    /* height: 100vh; */
}
/* #root {
    height: 100%;
}

#container {
    height: 100%;
} */
#wrapper {
    /* height: calc(100% - 153px); */
    margin-bottom: 48px;
}

div#header {
    position: relative;
}
div#header h1 {
    height: 80px;
    line-height: 80px;
    margin: 0;
    padding-left: 10px;
    background: green;
    color: white;
    margin-left: 5%;
}
div#header nav {
    position: relative;
    display: flex;
    list-style: none;
    margin: 0;
    padding-left: 10px;
    background: green;
    color: white;
}
div#header li {
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    padding-left: 10%;
    color: white;
}
div#header li a {
    color: #fff;
    text-decoration: none;
}
div#navigation img {
    width: 30rem;
    height: 22rem;
    margin: 6px;
}
div#extra {
    display: flex;
    padding: 0px;
    margin: auto;
}
div#extra #group-card {
    width: 20rem;
    height: 13rem;
    margin: 5%;
    padding: 5px;
    border: 2px solid #292929;
}
div#extra #group-card button {
    height: 50px;
    width: 10rem;
    background-color: rgb(8, 62, 8);
    color: #fff;
    border: none;
    position: absolute;
    bottom: 4px;
    border-radius: 10px;
    margin: 20px;
}
div#footer {
    background: #42444e;
    color: #fff;

    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    color: white;
    text-align: center;
    z-index: 100;
}
div#footer p {
    /* padding: 20px 10px; */
    text-align: center;
}
div#wrapper {
    float: left;
    width: 60;
    margin-left: 5%;
}
div#wrapper#content {
    text-align: center;
}
div#content h1 {
    font-size: 50px;
    font-weight: 800;
    color: rgb(11, 49, 11);
}
div#content button {
    height: 50px;
    width: 10rem;
    background-color: rgb(8, 62, 8);
    color: #fff;
    border: none;
    border-radius: 10px;
    margin: 20px;
}
div#navigation {
    float: right;
    width: 40%;
}
div#extra {
    clear: both;
    width: 100%;
}

.search{
    float:right;
    margin:7px;
}
     
.search button{
    background-color: #0074D9;
    color: #f2f2f2;
    float: right;
    padding: 5px 10px;
    margin-right: 16px;
    font-size: 12px;
    border: none;
    cursor: pointer;
}

/* Styling all the elements in nav as a whole */
nav {
    background: #037729;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0 10px 0 10px;
}

/* Styling the logo */
nav .logo {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -1px;
}

/* Styling all the nav items as a whole */
nav .nav-items {
    display: flex;
    flex: 1;
    padding: 0 0 0 200px;
}

/* Styling the list items in the nav tag */
nav .nav-items li {
    list-style: none;
    padding: 0 10px;
}

/* Styling each list items */
nav .nav-items li a {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}

/* Setting the hover colour on the list items*/
  
nav .nav-items li a:hover {
    color: #19191b;
}
  
nav .searchbar {
    position: relative;
}

/* Styling the search box where the 
    input would be given */
nav .searchbar input[type="text"] {
    border: 0;
    padding: 0;
    width: 0px;
    height: 35px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Styling the search bar icon */
nav .searchbar .icon {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    width: 35px;
    height: 100%;
    background: none;
    border-radius: 3px;
    color: #fff;
    transition: all 0.5s 0.3s ease;
}
  
nav .searchbar .icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}
  
nav .searchbar .icon.active {
    background: #062333;
    transition: all 0.3s ease;
}
  
nav .searchbar input[type="text"].active {
    width: 250px;
    padding: 0 10px;
    transition: all 0.5s 0.2s ease;
}

nav .licon {
    border-radius: 50%;
}

nav .licon img {
    border-radius: 50%;
    width: 35px;
    height: 35px;
}

nav .licon button {
    height: 50px;
    width: 10rem;
    background-color: rgb(8, 62, 8);
    color: #fff;
    border: none;
    border-radius: 10px;
    /* margin: 20px; */
    cursor: pointer;
}

nav .licon button:hover {
    background-color: rgb(7, 149, 7) !important;
}

  
nav .licon li {
    list-style: none;
    display: flex;
}
  
nav .licon li a {
    padding: 0 20px;
}

.breadcrumb {
    text-decoration: none;
    border: 1px solid gray;
    padding: 0.5rem 1rem;
    background-color: whitesmoke;
    color: #333;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    display: inline-block;
    margin-bottom: 2px;
}
/* Changing the colour of the login 
    icon when hovered over*/
  
.fa-user-circle:hover {
    color: #0e0d0d !important;
}


/*-------------------------*/
.card-flex {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: flex-start;
	width: 100%;
}
.card-flex-item {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex; 
	width: 100%;
	padding-right: 0;
}
.card-flex-wrapper {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-direction: column;
	width: 100%;

	/* background-color: #FFFFCC; */
    border-radius: 5px;
    /* margin-bottom: 1em; */
    margin-right: 0;
    padding: .5em;
}
.card-flex-wrapper-2 {
    padding: .5em;
    background-color: #FFFFCC;
    border-radius: 10px;
    border: 1px solid rgba(209,213,219, .7);
    position: relative;
}
.card-flex-content h3 {
    margin-top: 0px;
}
.card-flex-image img {
	opacity: 1;
}
.card-flex-button {
	background-color: white;
	border: 1px solid #333; 
	padding: 0.5rem;
	color: #333;
	text-align: center;
	text-decoration: none; 
}
.card-flex-button:hover {
	color: #333;
	text-decoration: none; 
}
.btn-block {
  display: block;
  /* width: 100%; */
}

.content {
	flex: 1;
	padding: 20px;
    padding-bottom: 50px;
}

.card-delete-btn {
    border: none;
    border-radius: 10px;
    
    line-height: 12px;
    width: 18px;
    font-size: 8pt;
    font-family: tahoma;
    margin-top: 1px;
    margin-right: 2px;
    position:absolute;
    top:0;
    right:0;
    height: 18px;
    background-color: red;
    color: white;
}

.card-delete-btn:hover {
    opacity: .6;
}

.customize-button-01 {
    height: 50px;
    width: 10rem;
    background-color: rgb(8, 62, 8);
    color: #fff;
    border: none;
    bottom: 4px;
    border-radius: 10px;
    cursor: pointer;
}

.customize-button-01:hover {
    opacity: .6;
}

button {
    cursor: pointer;
}

.button-style {
    background-color: #0074D9;
    color: #f2f2f2;
    padding: 5px 10px;
    font-size: 12px;
    border: none;
    cursor: pointer;
    height: 37px;
    border-radius: 5px;
    margin-right: 15px;
}

.button-style:hover {
    border: 1px solid #0e0d0d;
}
/* button {
    height: 50px;
    width: 10rem;
    background-color: rgb(8, 62, 8);
    color: #fff;
    border: none;
    position: absolute;
    bottom: 4px;
    border-radius: 10px;
    margin: 20px;
    cursor: pointer;
} */

.fixed-button {
    cursor: pointer;
    position: fixed;
    bottom: 50px;
    right: 0px;
    width: 50px;
    height: 50px;
    z-index: 1;
    border-radius: 50%;
    font-size: 2rem;
    background-color: orange;
    color: white;
    border: 1px solid rgba(209,213,219, .7);
    margin: 20px;
}

.fixed-button:hover {
    opacity: 1!important;
    box-shadow: rgba(0, 0, 0, 0.45) 0px 0px 20px 0px;
}

.fixed-button-member {
    bottom: 105px;
}

.fixed-button-member img {
    bottom: 105px;
    background-color: powderblue;   
}

.fixed-button-mask {
    color: beige;
    padding: 0;
    margin: 0;
    z-index: 2;
    position: absolute;
    /* top: -6px; */
    left: 13px;
    font-size: 2.5rem;
    font-weight: bolder;
}

input[type=text] {
    padding: 10px 5px;
    border-radius: 5px;
    border: 1px solid;
    outline: none;
    box-sizing: border-box;
}

.group-name-input {
    width: 100%;
}

.validation-error {
    color: red;
}

.prevent-click {
    pointer-events: none!important;
    opacity: 0.5!important;
}

nav .logo {
    display: block;
}

nav .logo-min {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -1px;
    display: none;
}

.device-search-list {
    overflow: auto!important;
    max-height: 200px!important;
}

.tab-part  {
    /* display: flex; */
}

.tab-part-btn {
    font-size: 20px;
    padding: 10px 10px;
    cursor: pointer;
    opacity: 0.6;
    background: white;
    border: 1px solid;
    outline: 0;
    border-radius: 25px;
    margin-left: 5px;
    margin-bottom: 5px;
}

.btn-base {
    background-color: #0074D9;
    color: #f2f2f2;
    padding: 6px 11px;
    font-size: 12px;
    border: none;
    cursor: pointer;
    /* height: 30px; */
    border-radius: 5px;
    margin-left: 5px
}

/*--------------------------------*/
@media (min-width: 768px) {
	.container .text-muted {
		text-align: end;
	} 
	.card-flex-item {
		width: 33.33%;
        width: 25%;
		/* padding-right: 1em;  */
	} 
	/* .card-flex-item:nth-child(3n) {
		padding-right: 0;
	}  */
	.card-flex-image img {
		opacity: 0.8; 
	}
	.card-flex-wrapper-2:hover {
		cursor: pointer;
		background-color: white;
		box-shadow: rgba(0, 0, 0, 0.45) 0px 0px 20px 0px;
	}
	.card-flex-wrapper-2:hover .card-flex-image img {
		opacity: 1;
		transition: opacity 0.5s cubic-bezier(.43,.41,.22,.91);
	}
	.card-flex-wrapper-2:hover .card-flex-button {
		background-color: #FFFFCC; 
	}
}

@media (max-width: 535px) {
    nav .nav-items {
        display: none;
    }

    nav .logo {
        display: none;
    }

    nav .logo-min {
        display: block;
    }
}

@media (max-width: 360px) {
    .button-style {
        margin-right: 1px;
    }
}