/*=============================================================*/
/* BASE */
/*=============================================================*/

/*-------------------------------------------------------------*/
/* Base */

/* Colors */
:root {
	--white: #ffffff;
	
	--blue1: #1c4587; /* Darkest blue */
	--blue2: #27559e;
	--blue3: #6fa8dc;
	--blue4: #1eaedb;
	--blue5: #9fc5e8;
	--blue6: #cfe2f3;
	
	--buttonprimary: #214587;
	/* --buttonprimary: #3c87ca; */ /* Lighter alternative */
}

body {
	font-family: 'Fira Sans', arial, sans-serif;
	color: #222;
	line-height: 1.6;
	font-size: 1em;
	margin-top: 0px;
	background-color: #f3f3f3;
}

hr {
	margin-top: 1rem;
	margin-bottom: 1rem;
	border-width: 0;
	border-top: 1px solid #E1E1E1;
}

header{
	min-height: 50px;
}

.header-icon{
	display: block;
	width: 200px;
	padding: 16px 0px;
}

footer{
	background-color: rgb(240,240,240);
	font-size: 14px;
	text-align: center;
	vertical-align:middle;
	padding: 80px;
}


/*-------------------------------------------------------------*/

/*-------------------------------------------------------------*/
/* Typography */

h1, h2, h3, h4, h5, h6 {
	margin-bottom: 0.6rem;
	/* margin-top: 1rem; */
	/* font-weight: 300; */
	font-weight: bold;
	letter-spacing: -.06rem;
	/* color: #595959; */
	color: #4d4d4d;
	font-family: 'Montserrat', sans-serif;
	/* display: flex; */
	/* align-items: center; */
}

h1 { font-size: 1.1rem; line-height: 1.2; }
h2 { font-size: 1.0rem; line-height: 1.25; }
h3 { font-size: 0.9rem; line-height: 1.3; }
h4 { font-size: 0.8rem; line-height: 1.35;  }
h5 { font-size: 0.7rem; line-height: 1.5;   }

@media (max-width: 550px) {
	h1 { font-size: 1.2rem; margin-top: 1rem; }
	h2 { font-size: 1.1rem; }
	h3 { font-size: 1.0rem; }
	h4 { font-size: 0.9rem; }
	h5 { font-size: 0.8rem; }
}

.sub-head {
    display: flex;
    padding-bottom: 8px;
    margin-bottom: 16px;
    border-bottom: 1px solid #e1e4e8;
    /* flex-flow: row wrap; */
}

.sub-head h1, .sub-head h2, .sub-head h3, .sub-head h4, .sub-head h5 {
	margin-bottom: 0.1rem;
}


p {
	margin-top: 8px; 
	margin-bottom: 8px;
	font-size: 13px;
	overflow-wrap: break-word;
}

pre {
	margin-top: 8px; 
	margin-bottom: 8px;
	font-size: 13px;
	white-space: pre-wrap;
	line-height: 1.6;
	margin: 6px 4px;
	overflow-wrap: break-word;
}

q {
	margin: 32px;
    font-style: italic;
    font-size: 14px;
}

.center {
	text-align: center !important;
}

.right {
	text-align: right !important;
}

.left {
	text-align: left !important;
}

.textwrapleft {
	clear: right;
	float: left;
	margin-right: 16px;
	margin-bottom: 16px;
}

.textwrapright {
	clear: left;
	float: right;
	margin-left: 16px;
	margin-bottom: 16px;
}



/*-------------------------------------------------------------*/

/*-------------------------------------------------------------*/
/* Links */

/*

a:hover MUST come after a:link and a:visited
a:active MUST come after a:hover

*/

a {
	color: #404040;
	/* color: #1EAEDB; */
	text-decoration: none;
	cursor: pointer;
}

footer a, footer a:visited {
	color: var(--blue3);
}

a:visited {
	color: #404040;
}

a:hover, footer a:hover {
	/* color: #0FA0CE; */
	color: var(--blue3);
}

a:active {
	color: #9cbfff;
}

.textlink {
	/* color: #0FA0CE; */
	color: var(--blue3);
}

.textlink:hover {
	text-decoration: underline;
	cursor: pointer;
}

.textlink:visited {
	/* color: #0FA0CE; */
	color: var(--blue3);
}

.textlink-subtle, .textlink-none {
	color: #404040;
}

.textlink-subtle:hover {
	color: #404040;
	text-decoration: underline;
}

.textlink-none:hover {
	color: #404040 !important;
}

.textlink-subtle:visited, .textlink-none:visited {
	color: #404040;
}


/*-------------------------------------------------------------*/

/*-------------------------------------------------------------*/
/* Lists */

ul {
	list-style: circle inside;
}

ol {
	list-style: decimal inside;
}

ol, ul {
	padding-left: 0;
	margin-top: 0;
}

ul ul, ul ol, ol ol, ol ul {
	margin: 1.5rem 0 1.5rem 3rem;
	font-size: 90%;
}

li {
	margin-bottom: 1rem;
}

/*-------------------------------------------------------------*/

/*-------------------------------------------------------------*/
/* Forms */

input[type="email"], input[type="number"], input[type="search"], input[type="text"],
input[type="tel"], input[type="url"], input[type="password"], textarea, select, input[list] {
	font-family: 'Fira Sans', arial, sans-serif;
	height: 38px;
	padding: 6px 10px;
	background-color: #fcfcfc;
	border: 1px solid #D1D1D1;
	border-radius: 4px;
	box-shadow: none;
	box-sizing: border-box; 
	margin-bottom: 12px;
	font-size: 14px;
}

/* Removes awkward default styles on some inputs for iOS */
input[type="email"], input[type="number"], input[type="search"], input[type="text"],
input[type="tel"], input[type="url"], input[type="password"], textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none; 
}

textarea {
	min-height: 65px;
	padding-top: 6px;
	padding-bottom: 6px;
}

.textarea-medium {
	min-height: 200px;
}

.textarea-large {
	min-height: 400px;
}

input[type="email"]:focus, input[type="number"]:focus, input[type="search"]:focus,
input[type="text"]:focus, input[type="tel"]:focus, input[type="url"]:focus,
input[type="password"]:focus, textarea:focus, select:focus {
	/* border: 1px solid #33C3F0 !important; */
	border: 1px solid var(--blue3) !important;
	outline: 0;
	background-color: #fff;
}

input[type="password"]
{
  -webkit-text-security: disc;
}
  
label, legend {
	display: flex;
	margin-bottom: .5rem;
	font-size: 14px;
}

.label-small, .legend-small {
	display: block;
	margin-bottom: .2rem;
	font-size: 12px;
}
  
fieldset {
	padding: 0;
	border-width: 0;
}
  
input[type="checkbox"], input[type="radio"] {
	display: inline;
}
  
label > .label-body {
	display: inline-block;
	margin-left: .5rem;
	font-weight: normal;
}
  
.fullarea{
	width: 100%;
	height: 200px;
}

.search-box {
	width: 275px;
}

.search-filter-container {
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
}

.search-filter-container-item {
	flex: 240px;
}

.input-with-icon-button {
	width: calc(100% - 78px)
}

.input-with-icon-button-small {
	width: calc(100% - 64px)
}

.minimized-input {
	height: 0px !important;
	padding: 0px 0px !important;
	width: 5px !important;
	border: 0px solid #D1D1D1 !important;
}

#ideaIdShowHide, #groupIdShowHide, #createPostGroup, #createPostIdea{
	display:none;
}

/*-------------------------------------------------------------*/

/*-------------------------------------------------------------*/
/* Buttons */

.button, button, input[type="submit"], input[type="reset"], input[type="button"] {
	display: inline-block;
	height: 38px;
	padding: 0 16px;
	color: #5e5e5e;
	text-align: center;
	font-size: 12px;
	font-weight: 600;
	/* line-height: 38px; */
	letter-spacing: .02rem;
	/* text-transform: uppercase; */
	text-decoration: none;
	white-space: nowrap;
	/* background-color: transparent; */
	background-color: white;
	border-radius: 4px;
	border: 1px solid #e9e9e9;
	cursor: pointer;
	box-sizing: border-box;
	margin-bottom: 10px;
	margin-right: 20px;
	/* box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.1), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0,0,0,.12); */
	font-family: inherit;
}

.button:hover, button:hover, input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover,
.button:focus, button:focus, input[type="submit"]:focus, input[type="reset"]:focus, input[type="button"]:focus {
	color: #333;
	border-color: #bebebe;
	outline: 0;
	background-color: #f7f7f7;
}

.button:active, button:active, input[type="submit"]:active, input[type="reset"]:active, input[type="button"]:active {
	color: #333;
	background-color: #efefef;
	outline: 0;
}

.button:hover.light {
	color: white;
}

.button.button-primary, button.button-primary, input[type="submit"].button-primary, input[type="reset"].button-primary, input[type="button"].button-primary {
	color: #FFF;
	/* background-color: #0fa0ce; */
	/* background-color: #214587; */
	background-color: var(--buttonprimary);
	/* border-color: #0fa0ce; */
	/* border-color: #214587; */
	border-color: var(--buttonprimary);
	/* box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0,0,0,.12); */
}

.button.button-primary:hover, button.button-primary:hover, input[type="submit"].button-primary:hover, input[type="reset"].button-primary:hover, input[type="button"].button-primary:hover,
.button.button-primary:focus, button.button-primary:focus, input[type="submit"].button-primary:focus, input[type="reset"].button-primary:focus, input[type="button"].button-primary:focus {
	color: #FFF;
	/* background-color: #1EAEDB; */
	background-color: #2b4f8a;
	/* border-color: #1EAEDB; */
	border-color: #009fff;
}

.button.button-primary:active, button.button-primary:active, input[type="submit"].button-primary:active, input[type="reset"].button-primary:active, input[type="button"].button-primary:active {
	color: #FFF;
	background-color: #3d69b1;
	border-color: #1EAEDB;
}

.button.button-secondary, button.button-secondary, input[type="submit"].button-secondary, input[type="reset"].button-secondary, input[type="button"].button-secondary {
	color: #FFF;
	background-color: #00000000;
    border-color: #ffffff;
}

.button.button-secondary:hover, button.button-secondary:hover, input[type="submit"].button-secondary:hover, input[type="reset"].button-secondary:hover, input[type="button"].button-secondary:hover,
.button.button-secondary:focus, button.button-secondary:focus, input[type="submit"].button-secondary:focus, input[type="reset"].button-secondary:focus, input[type="button"].button-secondary:focus {
	color: #111111;
	background-color: #ffffff;
	border-color: #ffffff;
}

.button.button-secondary:active, button.button-secondary:active, input[type="submit"].button-secondary:active, input[type="reset"].button-secondary:active, input[type="button"].button-secondary:active {
	color: #FFF;
	background-color: #a3a3a347;
    border-color: #ffffff;
}

button:disabled, button:disabled:hover {
	background-color: rgb(243, 243, 243);
	cursor: default;
	border-color: rgb(243, 243, 243);
	color: rgb(212,212,212);
}

.mini-button {
	margin-bottom: 6px;
	margin-right: 8px;
    padding: 0 14px;
    height: 32px;
    line-height: 32px;
	font-size: 11px;
}

.table-button{
	padding: 2px 5px;
	margin: 0px 2px;
	font: unset;
	height: unset;
    letter-spacing: unset;
    text-transform: unset;
	font-size: 10px;
}

.image-button {
	padding: 8px;
	height: unset;
	line-height: unset;
	border-radius: 50%;
}

.image-stripped-button {
	padding: 8px;
	height: unset;
	line-height: unset;
	border-radius: 50%;
}

.red-button {
	background-color:#ff3f3f !important;
	border: 1px solid #d50000;
	color: white;
}

.red-button:hover {
	background-color:#ff5f5f !important;
	border: 1px solid #d50000;
	color: white;
}

.green-button {
	background-color:#64ad6c !important;
	border: 1px solid green;
	color: white;
}

.green-button:hover {
	background-color:#70bb79 !important;
	border: 1px solid green;
	color: white;
}

.transparent-button{
	border: 0px solid black;
}

.sort-button {
	text-transform: unset;
	padding: 0px 8px;
	font-weight: normal;
}

.more-button {
	border: 0px solid black;
	text-transform: unset;
	padding: 0px 8px;
	/* opacity: 0.8; */
	font-size: 14px;
}

.more-button:hover {
	background-color: #f5f5f5;
	/* opacity: 1; */
}

.reset-button {
	height: unset;
	border: 0px;
	font-family: inherit;
	padding: unset; 
    color: unset;
	margin: 0px;
	font-size: unset; 
    font-weight: unset;
    line-height: unset;
    letter-spacing: unset;
    text-transform: unset;
	box-shadow: unset;
}

/* .reset-button:hover { */
	/* color: black; */
/* } */

/*-------------------------------------------------------------*/

/*-------------------------------------------------------------*/
/* Tables */

table {
	margin-bottom: 8px;
	word-wrap: break-word;
	table-layout: fixed;
	width: 100%;
	display: block;
    overflow-x: auto;
}

tr:hover td {
	background-color: #f3f3f3;
}

/* Vertical table for small screens */
@media (max-width: 550px) {
	.tr-vertical-mobile {
		display: grid;
		border-bottom: 1px solid #c3c3c3;
		padding: 8px 0px;
	}
}

th, td {
	padding: 4px 6px;
	text-align: left;
	/* border-bottom: 1px solid #E1E1E1; */
	font-size: 0.9rem;
	vertical-align: middle;
}


th {
	font-weight: bold;
}

/* th:first-child, td:first-child {
	 padding-left: 0; 
} */

/* th:last-child, td:last-child {
	 padding-right: 0; 
} */

td.fitwidth{
	width: 1px;
	white-space: nowrap;
}

.colw2{
	width: 2%;
}

.colw5{
	width: 5%;
}

.colw10{
	width: 10%;
}

.colw15{
	width: 15%;
}

.colw20{
	width: 20%;
}

.colw25{
	width: 25%;
}

.colw50{
	width: 50%;
}

.colw75{
	width: 50%;
}

.colsw10{
	width: 10px;
}

.colsw20{
	width: 20px;
}

.colsw30{
	width: 30px;
}

.colsw40{
	width: 40px;
}

.colsw50{
	width: 50px;
}

.colsw60{
	width: 60px;
}

.colsw70{
	width: 70px;
}

.colsw80{
	width: 80px;
}

.colsw90{
	width: 90px;
}

.colsw100{
	width: 100px;
}

.colsw120{
	width: 120px;
}

.colsw140{
	width: 140px;
}

.colsw160{
	width: 160px;
}

.colsw180{
	width: 180px;
}

.colsw200{
	width: 200px;
}

.full-width-table {
	display: table;
	table-layout: unset;
}

.hidden-column{
	display: none;
}

#userList th, #userList td {
	font-size: 14px;
}

.table-badge {
	font-size: 0.7rem;
	padding: 6px;
	background-color: gray;
	color: white;
	border-radius: 5px;
}

/*-------------------------------------------------------------*/

/*-------------------------------------------------------------*/
/* Images */

img {
	max-width: 100%;
}

.founder-avatar {
	height: 90px;
    width: 90px;
    border-radius: 50%;
    object-fit: cover;
	margin-bottom: 12px;
}

.profile-avatar {
	height: 48px;
    width: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-avatar-mini {
	height: 30px;
    width: 30px;
    border-radius: 50%;
    object-fit: cover;
	padding: 4px 8px 4px 4px;
}

.table-avatar {
	height: 42px;
    width: 42px;
    border-radius: 50%;
    object-fit: cover;
	vertical-align: middle;
	max-width: unset;
}

.comment-profile-avatar {
	height: 36px;
    width: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.view-profile-avatar {
	height: 90px;
    width: 90px;
    border-radius: 50%;
    object-fit: cover;
	border: 3px solid white;
}

.image-center {
	display: block;
	margin-left: auto;
	margin-right: auto;
	/* width: 50%; */
}

.image-buttonicon {
	height: 18px;
    vertical-align: middle;
	/* opacity: 0.5; */
	border-radius: 3px;
	/* padding: 4px; */
}

/* .image-buttonicon:hover { */
	/* opacity: 0.8; */
	/* background-color: #dfdfdf; */
/* } */

.image-button-icon {
	height: 15px;
	/* opacity: 0.8; */
	/* padding: 0px 6px; */
	vertical-align: middle;
}

.logo-medium {
	width: 48px;
}

.image-small {
	width: 150px;
}

.image-medium {
	width: 300px;
}

.image-large {
	width: 600px;
}

@media (max-width: 550px) {
	.image-medium {
		width: 100%;
	}
}

.black-and-white {
	filter: grayscale(100%);
}

/*-------------------------------------------------------------*/

.company-name {
	font-weight: 700 !important;
    letter-spacing: 0.1rem !important;
}

.company-name-of {
	font-weight: 100 !important;
}

/*-------------------------------------------------------------*/
/* Web browser Scroll bar */

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f175; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #d0d0d070; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #b6b6b6; 
}