@font-face {
  font-family: 'Montserrat';
  font-weight: 400;
  font-display: swap;
  src: url(font/Montserrat-Regular.woff) format('woff');
}
@font-face {
  font-family: 'Montserrat';
  font-weight: 600;
  font-display: swap;
  src: url(font/Montserrat-Medium.woff) format('woff');
}
@font-face {
  font-family: 'Montserrat';
  font-weight: 700;
  font-display: swap;
  src: url(font/Montserrat-SemiBold.woff) format('woff');
}
@font-face {
  font-family: 'Montserrat';
  font-weight: 800;
  font-display: swap;
  src: url(font/Montserrat-ExtraBold.woff) format('woff');
}
@font-face {
  font-family: 'Montserrat';
  font-weight: 900;
  font-display: swap;
  src: url(font/Montserrat-Black.woff) format('woff');
}


:root {
	--font: "Montserrat", sans-serif;
	/*--color-bg: #efefef;*/
	--color-bg: rgb(244,243,249); /*#F4F3F9;*/
	--color-dark: #111111;
	--color-white: #FFFFFF;
	--color-yellow: #FFC435;
	--color-red: #ff5e57;
	--color-yellow-hover: #FFB500;
	--violet: #ba9cff;
	--dark-cadet: #1C2238;
	--space-cadet: #2B3354;
	--space-cadet-hover: #3B415A;
	--nightfall: #230369;
	--charcoal: #413F49;
	--veather: #e7e7fb;
	--def-transition:all 0.2s ease-in-out;
	--card-shadow: 0 0 1px 0 rgba(0,0,0,0.01), 0 1px 3px 0 rgba(0,0,0,0.02), 0 2px 5px 0 rgba(0,0,0,0.02), 0 4px 8px 0 rgba(0,0,0,0.02);
	--blkshdw: 0 0 1px 0 rgba(0,0,0,0.01), 0 1px 3px 0 rgba(0,0,0,0.02), 0 2px 5px 0 rgba(0,0,0,0.02), 0 4px 8px 0 rgba(0,0,0,0.02);
}

/* 1em = 16px */
/* 8 16 24 32 40 */

* {
	font-family: "Montserrat", sans-serif;
}

li, ol, ul, ul li {
    list-style: none;
}
article, aside, details, figcaption, figure, footer, header, hgroup,
menu, nav, section {
    display: block;
}
body {
    margin: 0;
    padding: 0;
    line-height: 1;
	color: #000;
	/*background: #FFFFFF;*/
	background: var(--color-bg);
}
div, h1, h2, h3, h4, p, a, li {
	color: var(--color-dark);
}
a{
	text-decoration: none;
}
a:hover{
	text-decoration: underline;
}


input {
	width: 100%;
	font: 400 1em/1.3em var(--font);
	border: none;
	border-radius: .5em;
}

input[type=file] {
	display: none;
}

input[type=radio] {
	margin: 0;
	padding: 0;
	width: 1em;
	height: 1em;
	border: none;
}

fieldset {
	margin: 0;
	padding: 0;
	display: flex;
	border: none;
}


.mt--8 { margin-top: .5em; }
.mr--8 { margin-right: .5em; }
.mb--8 { margin-bottom: .5em; }
.ml--8 { margin-left: .5em; }
.mt--16 { margin-top: 1em; }
.mr--16 { margin-right: 1em; }
.mb--16 { margin-bottom: 1em; }
.ml--16 { margin-left: 1em; }
.pt--8 { padding-top: .5em; }
.pr--8 { padding-right: .5em; }
.pb--8 { padding-bottom: .5em; }
.pl--8 { padding-left: .5em; }
.pt--16 { padding-top: 1em; }
.pr--16 { padding-right: 1em; }
.pb--16 { padding-bottom: 1em; }
.pl--16 { padding-left: 1em; }
.flex { display: flex; }
.flf--r { flex-flow: row; }
.flf--c { flex-flow: column; }
.jc--spb { justify-content: space-between; }
.jc--c { justify-content: center; }
.ali--c { align-items: center; }
.p100 {width: 100%;}

h1, h2, h3, h4, p {
	margin: 0;
	padding: 0;
}

ul {
	margin: 0;
	padding: 0;
}
ul li {
	padding: .5rem 0;
}

.hidden {
	display: none !important;
}


button, .button {
	display: inline-block;
	position: relative;
	cursor: pointer;
	margin: 0;
	padding: .8rem 1.3rem;
	min-height: 40px;
	font: 800 1rem/1rem var(--font);
	box-shadow: none;
	border: none;
	border-radius: .5em;
	transition: var(--def-transition);
	background: #111111;
	color: #fff;
	text-decoration: none !important;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	align-self: flex-start;
}

button .loader {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -12px;
	height: 24px;
	transform: translate(0, -50%);
}

button:focus,input:focus,select:focus,textarea:focus{
    outline:0
}

header {
	padding: 1.6rem;
	border-radius: 1rem;
	display: flex;
	flex-flow: column;
	gap: .9rem;
	
	position: fixed;
	top: 1.5rem;
	left: 1.5rem;
	/*max-width: 192px;*/
	/*width: clamp(200px, 20%, 220px);*/
	width: 204px;
    /*align-items: center;*/
	/*padding: 12px;*/
	/*display: flex;*/
	/*justify-content: space-between;*/
	/*z-index: 99;*/
	background: #FFFFFF;
	box-shadow: var(--blkshdw);
}


.logo-name {
	display: flex;
	align-items: center;
	/*padding: 12px;*/
	/*width: 140px;*/
	height: 36px;
	z-index: 6;
}

.logo-name a {
	text-decoration: none !important;
	color: var(--nightfall);
}

.logo {
	/*width: 24px;*/
	/*height: 24px;*/
	/*transform: translate(10px, 0) scale(1.4);*/
	--icon: url("data:image/svg+xml,%0A%3Csvg width='44px' height='44px' viewBox='0 0 44 44' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Page-4' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='remotecreators' fill='%23000000' fill-rule='nonzero'%3E%3Cpath d='M22.587561,-5.32907052e-14 C34.4232197,0.298954857 44,10.0580724 44,21.9819748 C44,33.4020281 35.2157078,42.8368165 24.0509717,43.9090866 L22.622524,25.8710258 L22.622524,25.8710258 C28.2493222,25.6248276 32.726168,20.9446014 32.726168,15.2519734 C32.726168,10.4014807 29.4756595,6.28573528 25.0301852,4.98645179 L22.587561,-5.32907052e-14 L22.587561,-5.32907052e-14 Z M21.2645335,0.00202234168 L19.035952,4.93520198 L19.035952,4.93520198 C14.5607624,6.23945794 11.273626,10.3738968 11.2736259,15.2513579 C11.2736259,20.9107492 15.6996323,25.5702068 21.2690825,25.9504247 L20.0159295,43.8929066 L20.0159295,43.8929066 C8.82205381,42.8770863 -2.84217094e-14,33.4263712 -2.84217094e-14,21.9822386 C-2.84217094e-14,10.1163686 9.48354567,0.393916988 21.2645335,0.00202234168 Z M22.0002708,15.6433405 C24.0704315,15.6433405 25.7584182,17.3312044 25.7584182,19.4002358 C25.7584182,21.4693551 24.0699917,23.1574746 22.0002708,23.1571313 C19.9304619,23.1571313 18.2424752,21.4696189 18.2424752,19.4002358 C18.2424752,17.3307648 19.9305498,15.6433405 22.0002708,15.6433405 Z' id='remotecreators-shape'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	width: 2rem;
    height: 2rem;
    display: block;
    -webkit-mask-size: 100%;
    mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-image: var(--icon);
    mask-image: var(--icon);

    /*background-image: linear-gradient(51deg, #8158E0 0%, #73A7FF 100%);*/
    background: var(--nightfall);
}

.nav-account {
	margin: .3rem -.5rem .6rem -.5rem;
	padding: .4rem .5rem .4rem .7rem;
	border-radius: .8rem;
	background: rgba(0,0,0,0.06);
}

.nav-account a {
	font: 700 .9rem/1.2rem var(--font);
	text-transform: uppercase;
}

.nav-account > a {
	margin-left: .2rem;
}

.nav-account .button {
	background-image: linear-gradient(156deg, #3F00FF 4%, #8600FF 100%);
	box-shadow: 0 0 1px 0 rgba(0,0,0,0.01), 0 1px 3px 0 rgba(0,0,0,0.02), 0 2px 5px 0 rgba(0,0,0,0.02), 0 4px 8px 0 rgba(0,0,0,0.02);
	border-radius: 8px;
	text-decoration: none;
}
.nav-account .button:hover {
	background-image: linear-gradient(156deg, #3F00FF 24%, #8600FF 70%);
}
	
.name {
	width: 80px;
	margin: 2px 0 0 .5em;
	font: 800 16px/1em var(--font);
	color: #7C76EC;
}
.header-meta {
	display: block;
	align-self: flex-end;
	margin: 0;
	font: 400 14px/1em var(--font);
	color: #808080;
}
.menu {
	/*margin-left: auto;*/
	height: 100%;
}
.menu input[type=checkbox] {
	display: none;
}
nav {
	margin-top: -.2rem;
	padding-bottom: .5rem;
	display: flex;
	/*justify-content: space-between;*/
	flex-flow: column;
	/*margin-right: 24px;*/
	height: 100%;
}

nav a {
	position: relative;
	/*margin: 0 16px;*/
	font: 700 .85rem/1.8rem var(--font);
	text-transform: uppercase;
	align-items: center;
    display: flex;
    border-bottom: 2px solid transparent;
}

nav a:hover{
	text-decoration: none;
}

nav a.active {
	border-bottom: 2px solid var(--color-dark);
}

nav a.inactive {
	color: rgba(0,0,0,0.4);
}

nav a.beta i {
	background: #fbff5b;
}
nav a i {
	position: absolute;
	/*top: -5px;*/
	right: 0;
	/*margin-top: -12px;*/
	font: 700 .7rem/.8rem var(--font);
	background: #ffd5b1;
	padding: 2px 7px;
	border-radius: 10px;
	color: rgba(0,0,0,0.75);
}
.new {
	background-color: #fff;
}

.button-create-project {
	margin: .5rem -0.8rem -.8rem -0.8rem;
	padding: .8rem 0.8rem;
	width: calc(100% + 1.6rem);
	border-radius: 0.6rem;
	align-content: center;
	align-items: center;
	text-align: center;
	text-transform: uppercase;
	/*font-weight: 700;*/
	/*font-size: .9rem;*/
	font: 800 .8rem/1rem var(--font);
	background: var(--nightfall);
}

.profile {
	margin-right: 0;
	width: 2.25em;
	height: 2.25em;
	border-radius: 50px;
	text-align: center;
	font: 800 1em/2.25em var(--font);
	color: rgba(0,0,0,0.8);
	background: rgba(255,255,255,0.5);
	justify-content: center;
}

.large-card {
	padding: 1.5rem 2rem;
	background: #fff;
	border-radius: 1rem;
	box-shadow: var(--card-shadow);
}
.large-card h2 {
	font: 800 1.5rem/2rem var(--font);
	text-transform: uppercase;
}

.profile-content {
	/*max-width: 560px;*/
	width: calc(100% - 2.5rem);
}

.avatar {
	cursor: pointer;
	width: 6rem;
	height: 6rem;
	border-radius: 3rem;
	background: #ccc;
	overflow: hidden;
	flex-shrink: 0;
}

.avatar img {
	width: 100%;
	object-fit: contain;

}

a.post {
	cursor: pointer;
	margin: 0 8px 0 0;
	padding: 0 12px;
	min-width: 96px;
	font: 700 16px/2.3em var(--font); 
	text-align: center;
	text-decoration: none;
	color: #FFFFFF;
	background: #DB4650;
	border: none;
	/*box-shadow: 2px 2px 0 0 #422800;*/
	border-radius: 6px;
}


section {
	padding: 1.5rem 0 40px 262px;
	width: calc(100% - 1.5rem);
	min-height: calc(100vh - 80px);
}

section .breadcrumbs {
	margin: 1rem 0 -1.2rem 0;
}

section h1 {
	margin-top: 1rem;
	font: 800 1.8rem/3rem var(--font);
	text-transform: uppercase;
}
section .large-card h1 {
	margin-top: 0;
}

.button-primary {
	display: inline-block;
	padding: 0.75em 1.25em;
	/*width: auto;*/
	/*height: 36px;*/
	font: 800 1em/1em var(--font);
	text-align: center;
	/*color: var(--dark-cadet);*/
	/*background: var(--color-yellow);*/
	color: #fff;
	background: #111;
}
/*.button-primary:hover {
	background: var(--color-yellow-hover);
}*/

.button-secondary {
	background: var(--veather);
	color: var(--nightfall);
}

.bg--red {
	background: #f53b57;
}
.t--white {
	color: #fff;
}

.wrapper {
		margin: 0 auto;
		width: 1000px;
}

.article {
		position: relative;
		margin: 0 20px 20px 0;
		float: left;
		width: 235px;
		height: 410px;
		overflow: hidden;
		background: #252C48;
		color: #FFF;
		border-radius: 3px;
}
.article:nth-of-type(4n) {
		margin-right: 0;
}
.article a {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 410px;
		z-index: 1;
}
.article .article-image {
		position: relative;
		display: block;
		width: 100%;
		height: 240px;
		background: rgba(255,255,255,0.1);
		overflow: hidden;
}
.article .article-image img {
		position: absolute;
		left: 50%;
		transform: translate(-50%);
		width: auto;
		height: 100%;
}
.article .article-info,
.article .article-author {
		padding: 0 10px;
		color: rgba(255,255,255,0.5);
}
.article .article-info {
		padding-top: 10px;
}
.article .article-title {
		padding: 10px;
		font-weight: 800;
		font-size: 24px;
}
.article .article-text {
		padding: 10px;
		font-weight: 400;
		color: rgba(255,255,255,0.7);
		font-size: 14px;
		line-height: 18px;
}

.filters {
	margin-bottom: 20px;
	width: 100%;
	overflow-x: scroll;
	-ms-overflow-style: none;  /* IE and Edge */
  	scrollbar-width: none;  /* Firefox */
}
.filters::-webkit-scrollbar {
	display: none;
}
.filters-wrapper {
	display: flex;
	flex-flow: flex-start;
	min-width: 440px;
}
.filters span {
	cursor: pointer;
	display: block;
	margin-right: 12px;
	padding: 12px;
	background: rgba(0,0,0,0.08);
	border-radius: 6px;
	font: 700 .9rem/1rem var(--font);
}
.filters span.active,
.filters span:hover {
	background: #FFFFFF;
}

.jobs {
	padding-top: 1.5rem;
	width: calc(100% - 1.5rem);
}
.jobs-list {
	display: flex;
	flex-flow: column;
	gap: .5rem;
}
.jobs-list .coffee-cup {
	margin: 100px auto;
}

.card-slim {
	position: relative;
	/*margin: 0 0 16px 0;*/
	padding: .5rem;
	background: #fff;
	border-radius: .5rem;
	overflow: hidden;
	box-shadow: var(--card-shadow);
}
.card-slim:hover {
	/*background: rgba(0,0,0,0.15);*/
	box-shadow:
	  0 1px 2px rgba(0, 0, 0, 0.01),
	  0 3px 5px rgba(0, 0, 0, 0.02),
	  0 5px 10px rgba(0, 0, 0, 0.03),
	  0 10px 16px rgba(0, 0, 0, 0.04),
	  0 18px 30px rgba(0, 0, 0, 0.05)
	;
}
.card-slim .expand {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 66px;
	z-index: 1;
}
.job-info {
	width:calc(100% - 66px);
}
.job-title {
	max-width: 760px;
	width: 100%;
	font: 700 1rem/1rem var(--font);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	/*width: 100%;*/
}
.job .apply {
	width: auto;
	/*height: 36px;*/
	font: 700 1rem/1.1rem var(--font);
	text-align: center;
	color: var(--dark-cadet);
	background: var(--color-yellow);
	border-radius: .5rem;
	z-index: 2;
}
.job .apply.top {
	position: absolute;
	top: 14px;
	right: 14px;
	display: none;
	padding: 11px 16px;
	
}
.job:hover .apply.top {
	display: block;
}
.job .apply.bottom {
	display: none;

	padding: 10px 16px;

}

.job .job-description-link {
	display: none;
	position: absolute;
	top: 16px;
	right: 100px;

}
.job:hover .job-description-link {
	display: block;
}

.job .hide-job {
	cursor: pointer;
	display: none;
	position: absolute;
	right: 40px;
	bottom: 32px;
}

.job-date {
	padding-top: .3em;
	font: 500 .9em/1em var(--font);
	opacity: 0.5;
}
.job-desc {
	padding: 0 0 0 3.9rem;
	display: none;
	width: calc(100% - 30px);
}
.job-desc,
.job-desc * {
	font: 500 16px/1.5em var(--font);
}
.job-desc p {
	margin: 0 0 16px 0;
}
.job-desc strong {
	font-weight: 700;
}
.job-desc ul {
	padding: 0 0 0 20px;
}
.job-desc ul li {
	margin-bottom: 0.25em;
	list-style: disc;
}
.job-image {
/*	position: absolute;
	top: 8px;
  left: 8px;
*/	width: 50px;
	height: 50px;
	overflow: hidden;
	background: #fff;
	border-radius: 4px;
}
.job-image.no-image {
	opacity: 0.1;
}

.job-image span {
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	font: 700 24px/1em var(--font);
	background: rgba(0,0,0,0.5);
	color: rgba(0,0,0,0.65);
}

.card-slim img {
	width: auto;
	height: 100%;
}

.job-expand {
	cursor: pointer;
	align-items: center;
	gap: .75rem;
}

.job-minimize {
	cursor: pointer;
	display: none;
	font: 800 1em/1em var(--font);
	text-decoration: underline;
}

.job-minimize:hover {
	text-decoration: none;
}

.button-apply,
.button-apply:hover {
	text-decoration: none;
}

.card-slim.paid {
	border: 2px solid #703aec;
}
.card-slim.paid .button-apply {
	display: block;
	background: var(--violet);
    color: var(--color-dark);
}

.logo-placeholder {
	cursor: pointer;
	position: relative;
	overflow: hidden;
	background: #fff;
}

.form-message.error {
	font-weight: bold;
	color: #ff4e4e;
}

.preview .logo-placeholder {
	width: 100% !important;
	height: 100% !important;
	border: none !important;
}

.logo-placeholder:hover {
	background: rgba(255,255,255,0.2);
}

.logo-placeholder img {
	width: 100%;
	height: 100%;	
	object-fit: cover;
}

.subscription-box {
	position: relative;
	padding: 1.5em;
	background: #fff;
	border-radius: 6px;
	overflow: hidden;
}

.subscription-box h2 {
	margin: 0;
	padding: 0;
	font: 800 1.5em/1em var(--font);
}

.subscription-box form {
	margin-top: 1em;
	display: flex;
	align-items: flex-start;
	/*justify-content: center;*/
}

.subscription-box input,
.auth input {
	padding: 0 1em;
	width: 360px;
	height: 40px;
	font: 400 0.9em/20px var(--font);
/*	border-radius: 0.3em;*/
	border: 1.5px solid var(--color-dark);
	/*box-shadow: inset 0 0 0 ;*/
}


.subscription-box button,
button.yellow {
	
	margin-left: 0.5em;
	padding: 0 1.3em;
	width: 210px;
	height: 40px;
	font: 800 1em/1em var(--font);
	color: rgba(0,0,0,0.9);
	background: var(--color-yellow);
	
}

.subscription-box button:hover,
button.yellow:hover {
	background: var(--color-yellow-hover);
}

.subscription-box .warning {
	padding: 0.5em 0 0 0;
}

.button-loading {
	color: transparent;
}

.button-complete {
	background: #fd742c !important;
	color: #fff;
}

.job-description {
	padding: .5em;
	line-height: 1.2em;
}

.bold-link {
	cursor: pointer;
	font-weight:700;
	text-decoration:underline;
}

.button-log-in,
.button-create-account {
	margin-right: 1rem;
	background-image: linear-gradient(156deg, #3F00FF 4%, #8600FF 100%);
	box-shadow: var(--card-shadow);
}


.spin {
        display: inline-block;
        width: 24px;
        height: 24px;
        border: 3px solid rgba(0, 0, 0, 0.1);
        border-radius: 50%;
        border-top-color: #000;
        animation: spin 1s ease-in-out infinite;
        -webkit-animation: spin 1s ease-in-out infinite;
      }
      @keyframes spin {
        to {
          -webkit-transform: rotate(360deg);
        }
      }
      @-webkit-keyframes spin {
        to {
          -webkit-transform: rotate(360deg);
        }
      }

.shake {
  animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}



.input-error {
	/*border-color: #ff4e4e !important;*/
	border-color: #da193d !important;
}

footer {
	padding: 24px 0;
	width: 100%;
	display: flex;
	flex-flow: column;
	/*justify-content: center;*/
	font: 500 .9rem/1rem var(--font);
	color: rgba(26, 0, 87, .3);
}

footer .wrapper {
	display: flex;
	justify-content: center;
}

footer a,
footer span {
	color: rgba(26, 0, 87, .3);	
}
footer a:hover {
	text-decoration: underline;
}

.icons-library {
	display: none;
}

* {
  box-sizing: border-box;
}

.floating div {
    position: relative;
    overflow: hidden;
    padding: 16px 0 0 0;
 }
.floating input, textarea {
    width: 100%;
    border: 2px solid gray; 
    background: none;
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
    padding: 8px 12px;
    outline: 0;
    background: white;
}

.floating input:focus::placeholder,
.floating textarea:focus::placeholder {
	color: #FFF;
}

.floating input:focus,
.floating textarea:focus {
	border-color: #f06d06;
}
.floating input:focus + label ,
.floating textarea:focus + label  {
	height: 20px;
	background: #f06d06;
    color: white;
    padding: 1px 6px;
    z-index: 2;
}

.floating label {
    position: absolute;
    padding: 7px 6px;
    color: #999;
    transition:
      background 0.2s,
      color 0.2s,
      top 0.2s,
      bottom 0.2s,
      right 0.2s,
      left 0.2s;
 }

.floating input,
.floating textarea {
    padding: 12px 12px 12px 12px; 
 }

.floating label {
    top: 20px;
    bottom: 0;
    left: 0;
}

.floating input:focus,
.floating textarea:focus {
    padding: 4px 6px 20px 6px; 
}

.floating input:focus + label,
.floating textarea:focus + label {
	top: 0;
    bottom: 100%;
    margin: 10px 0 0 6px;
}

.last-updated {
	font: 600 16px/1em var(--font);
	margin: -20px 0 30px 0;
	color: rgba(0,0,0,0.5);
}

.homepage {
	background: #fff;
}

.homepage section {
	/*padding: 2rem 8rem;*/
	/*padding: clamp(1rem, 2rem, 3rem) clamp(1rem, 8rem, 10rem);*/
	padding: 6rem min(8rem, 5%);
	width: clamp(240px,100%,1000px);
	min-height: 440px;
	height: calc(100vh - 200px);
}

.homepage h1 {
	font: 800 2.5rem/3rem var(--font);
	text-transform: capitalize;
	color: var(--nightfall);
}

.homepage p {
	padding: .8rem 0 1.2rem 0;
	font: 400 1rem/1.5rem var(--font);
	color: var(--nightfall);
}

.homepage .button {
	/*height: 3rem;*/
	font: 700 1rem/1.5rem var(--font);
}

.homepage .button-primary {
	background: var(--nightfall);
	transition: var(--def-transition);
}
.homepage .button-primary:hover {
	background: rgb(46, 0, 167);
}

.homepage .button-secondary {
	background: rgba(26, 0, 87, .1);
	color: var(--nightfall);
	transition: var(--def-transition);
}
.homepage .button-secondary:hover {
	background: rgba(76, 0, 207, .15);
}

.homepage footer {
	padding: 2rem min(8rem, 5%);
	font: 500 .9rem/1.2rem var(--font);
	color: rgba(26, 0, 87, .3);
}

.logo-label {
	padding-left: .5rem;
	width: 100px;
	font: 800 .9rem/1rem var(--font);
	color: var(--nightfall);
}

/*** COFFEE LOADER ***/

.coffee-cup {
    width: 20px;
    height: 24px;
    border: 2px var(--color-dark) solid;
    border-radius: 0px 0px 5px 5px;
    position: relative;
    margin: 36px auto;
}
.coffee-cup::after, .coffee-cup::before {
    position: absolute;
    content: "";
}
.coffee-cup::after {
    width: 5px;
    height: 12px;
    border: 2px var(--color-dark) solid;
    border-left: none;
    border-radius: 0px 20px 20px 0px;
    left: 20px;
}
.coffee-cup::before {
    width: 2px;
    height: 6px;
    background-color: var(--color-dark);
    top: -12px;
    left: 2px;
    box-shadow: 5px 0px 0px 0px var(--color-dark),
                5px -5px 0px 0px var(--color-dark),
                10px 0px 0px 0px var(--color-dark);
    -webkit-animation: steam 1s linear infinite alternate;
       -moz-animation: steam 1s linear infinite alternate;
            animation: steam 1s linear infinite alternate;
}

@-webkit-keyframes steam{
    0%{height: 0px;}
    100%{height: 6px;}
}
@-moz-keyframes steam{
    0%{height: 0px}
    100%{height: 6px;}
}
@keyframes steam{
    0%{height: 0px}
    100%{height: 6px;}
}
button .coffee-cup {
		display: block;
		margin: 0;
		transform: scale(.8) translate(calc(-50% - 1px),-50%);
}
button .coffee-cup, button .coffee-cup::before, button .coffee-cup::after {
	--color-dark: #fff;
}

/*** end COFFEE LOADER ***/


.meta.source {
	display: none;
	margin: 1em 0;
	font: 400 .9em/1em var(--font);
	color: rgba(0,0,0,0.3);
}

.table {
	border-radius: .3em;
	overflow: hidden;
	/*box-shadow: var(--card-shadow);*/
}

.table .th,
.table .tr {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2px;
}

.table .th {
	border-radius: .5rem .5rem 0 0;
	overflow: hidden;
}

.table .tr:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2em;
	background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 83%, rgba(255,255,255,1) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 83%,rgba(255,255,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 83%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
}


.currently {
	display: none;
	margin-right: auto;
	padding-left: 1em;
	font: 800 1.3em/1em var(--font);
	color: rgba(0,0,0,0.6);
}



.table .th.fixed {
	position: fixed;
	top: 72px;
	width: calc(100% - 286px);
	z-index: 1;
	border-bottom: 1px solid var(--color-bg);
}

.table .th.fixed:after {
	content: '';
	position: absolute;
	top: -72px;
	left: 0;
	width: 100%;
	height: 80px;
	background: var(--color-bg);
	z-index: -1;
}

.table .th.fixed .td:nth-of-type(1) {
	border-radius: .3em 0 0 0;
}

.table .th.fixed .td:nth-of-type(9) {
	border-radius: 0 .3em 0 0;
}

.table .th .td {
	white-space: nowrap;
}

.table .th .td,
.table .tr .td {
	padding: .5em;
	text-align: left;
	overflow: hidden;
	font: 400 .9em/1.1em var(--font);
	height: 80px;
	background: #fff;
}

.table .th .td {
	height: auto;
	font-weight: 800;
}


.td-rate {
	cursor: pointer;
	font-weight: 800;
	position: relative;
}

.td-rate:hover {
	text-decoration: underline;
}

.td-sortable {
	display: flex;
	align-items: center;
}

/*.td-sortable:after {
	content: '';
	display: block;
	margin-left: .5em;
	width: 1em;
	height: 1em;
	background: #ccc;
}*/

.rates-table {
	position: relative;
	padding-top: .5rem;
}

.rates-table .td:nth-of-type(1) { /*date added*/
	width: 12%;
}
.rates-table .td:nth-of-type(2) { /*company*/
	width: 11%;
}
.rates-table .td:nth-of-type(3) { /*job*/
	width: 15%;
	font-weight: 700;
}
.rates-table .td:nth-of-type(4) { /*rate*/
	width: 8%;
	font-weight: 700;
}
.rates-table .td:nth-of-type(5) { /*completed*/
	width: 8%;
}
.rates-table .td:nth-of-type(6) { /*year*/
	width: 8%;
}
.rates-table .td:nth-of-type(7) { /*comments*/
	width: 22%;
}
.rates-table .td:nth-of-type(8) { /*daily rate*/
	width: 8%;
}
.rates-table .td:nth-of-type(9) { /*country*/
	width: 8%;
}

.rates-table .loading-rates .td {
	width: 100%;
	height: 100px;
}

.pre-title {
	font: 800 1em/1em var(--font);
}

.table .th.fixed {
	border-color: #26252B;
}


.auth {
	/*position: absolute;*/
	
	position: fixed;
	padding: 9em 0 2em 0;
	/*left: 0;*/
	left: 262px;
	bottom: 0;
	width: calc(100% - 286px);
	display: flex;
	flex-flow: column;
	align-items: center;
	z-index: 1;
	/*background: var(--dark-cadet);*/
	background: rgb(244,243,249);/*#F4F3F9;*/ /* Old browsers */
	background: -moz-linear-gradient(top, rgb(255,255,255) 0%, var(--color-bg) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgb(255,255,255) 0%, var(--color-bg) 60%, var(--color-bg) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgb(255,255,255) 0%, var(--color-bg) 60%, var(--color-bg) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.auth-title {
	margin-top: -4px;
	font: 800 1.75em/2em var(--font);
}
.auth input {
	width: 280px;
}
.auth button {
	width: auto;
}



.cards,
.tool-cards {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 1.5rem;
}

.card,
.tool-card {
	display: flex;
	flex-flow: column;
	align-items: center;
	margin: 0;
	padding: 2em;
	width: calc(25% - 1.5em);
	min-height:320px;
	background: #FFF;
	border-radius: .5rem;
}
.card.active:hover,
.tool-card.active:hover {
	box-shadow:
	  0 1px 2px rgba(0, 0, 0, 0.01),
	  0 3px 5px rgba(0, 0, 0, 0.02),
	  0 5px 10px rgba(0, 0, 0, 0.03),
	  0 10px 16px rgba(0, 0, 0, 0.04),
	  0 18px 30px rgba(0, 0, 0, 0.05)
	;

}

.tool-card.empty {
	background: transparent;
	border: 3px dashed rgba(0,0,0,0.5);
}


.tool-icon {
	display: block;
	margin-top: 1em;
	width: 8em;
	height: 8em;
	border: 3px dashed rgba(0,0,0,0.5);
	border-radius: .5em;
}

.rate-finder .tool-icon {
	background: url('../images/rate-finder-icon.png') no-repeat 0 0;
	background-size: contain;
	border: none;
}

.remote-companies .tool-icon {
	background: url('../images/remote-companies-icon.png') no-repeat 0 0;
	background-size: contain;
	border: none;
}

.tool-name {
	position: relative;
	margin-top: 2em;
	text-align: center;
	font: 800 1.2em/1em var(--font);
}

.soon .tool-name {
	color: rgba(0,0,0,0.7);
}

.soon .tool-name i {
	position: absolute;
	/* top: -5px; */
	right: -20px;
	margin-top: -12px;
	font: 700 12px/1em var(--font);
	background: rgba(0,0,0,0.1);
	padding: 2px 7px;
	border-radius: 10px;
	color: rgba(0,0,0,0.5);
}

.wrapper-tweets p {
	font: 400 1em/1.4em var(--font);
	max-width: 640px;
	margin: -1em 0 2em 0;
	opacity: 0.8;
}

.company-card {
	width: calc(25% - 1em);
	min-height: 280px;
}

.company-card:hover,
.company-card:hover span {
	text-decoration: none;
}

.company-logo {
	width: 5em;
	height: 5em;
	overflow: hidden;
	border-radius: .8em;
}

.company-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.company-name {
	margin: 1em 0;
	font: 800 1.2em/1em var(--font);
}

.company-tags {
	display: block;
	margin-top: auto;
	font: 600 0.9em/1em var(--font);
	text-align: center;
	opacity: 0.8;
}

.company-desc {
	font: 400 1em/1em var(--font);
	text-align: center;
}



.tweets {
	display: flex;
	flex-flow: row wrap;
	width: 100%;
}

.twitter-tweet-rendered {
	--width: calc(50% - 1em);
	margin-right: 1em;
	min-width: var(--width) !important;
	width: var(--width) !important;
}

input, textarea, select, .input, .selectbox {
	z-index: 0;
	position: relative;
	margin: 0 0 .5em 0;
	padding: 0 .6em;
	height: 2.5em;
	border-radius: .4em;
	border: 1px solid #ccc;
	font: 400 1rem/1.4rem var(--font);
	color: #111;
}

textarea {
	padding: .5rem;
}

select {
	padding-right: 1.6rem;
}

.floating-label-field {
	background: transparent;
}

input:hover, textarea:hover, select:hover, .input:hover, .selectbox:hover {
	border-color: var(--input-grey-hover);
}

.floating-label-wrapper input,
.floating-label-wrapper textarea {
	width: 100%;
}
.floating-label-wrapper {
	position: relative;
	width: 100%;
	margin-bottom: .5em;
}
.floating-label-field::placeholder {
	color: transparent;
}
.floating-label {
	font: 400 1em/1 var(--font);
	z-index: 1;
}
.floating-label-field:focus {
	outline: 0;
	box-shadow: 0;
	border-color: var(--blue);
}
.floating-label-field:focus::placeholder {
	color: transparent;
}
.floating-label {
	position: absolute;
	top: 13px;
	left:5px;
	line-height: 1;
	padding: 0 8px;
	height: 20px;
	background: #fff;
	opacity: 0.5;
	transition: transform .25s, all .25s ease-in-out;
   	transform-origin: 0 0;
   	border-radius: 4px;
}
.floating-label-field:focus + .floating-label,
.floating-label-field:valid:not(:placeholder-shown) + .floating-label {
	opacity: 1;
	transform: translate(0px, -20px) scale(.8);
	z-index: 3;
}
.floating-label-field:valid:not(:placeholder-shown)  {
	border-color: var(--green);
}

.blackout {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(200,200,200,0.5);
	/*background-color: var(--color-bg) 25%;*/
	z-index: 2;
}

.pop-up {
	position: absolute;
	/*top: calc(50% - 60px);*/
	top: 160px;
	left: 50%;
	transform: translate(-50%);
	padding: 2em;
	background: #fff;
	z-index: 3;
	border-radius: .5em;
}
.pop-up-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.pop-up-close {
	cursor: pointer;
	position: relative;
	/*background: #fff;*/
	width: 1em;
	height: 1em;
}
.pop-up-close:before {
	content: '';
	display: block;
	position: absolute;
	top: .5em;
	left: 0;
	width: 100%;
	height: 2px;
	transform: rotate(45deg);
}
.pop-up-close:after {
	content: '';
	display: block;
	position: absolute;
	top: .5em;
	left: 0;
	width: 100%;
	height: 2px;
	transform: rotate(-45deg);
}

.pop-up-close:before,
.pop-up-close:after {
	background: var(--color-dark);
}

.pop-up input {
	z-index: 2;
}

.pop-up button {
	margin: 0;
	width: 100%;
}

.pop-up-title {
	font: 800 1.5em/1em var(--font);
}

.pop-up-content {
	margin-top: 2em;
}

.pop-up-login {
	position: fixed;
}

.button-login {
	margin-right: 1em;
	padding: .6em 1em;
	font: 800 1em/1em var(--font);
	background: #fd742c;
}

.pop-up-login a {
	margin: 1em 0 0 0; 
	display: block;
	text-align: center;
}

.pop-up-login ul {
	max-width: 400px;
	margin: 0;
	padding: 0;
}

.pop-up-login ul li {
	margin: .5em 0;
	display: flex;
}

.pop-up-login ul li i {
	display: inline-block;
	font-style: normal;
	margin-right: .5em;
}

.button-disabled {
	background: rgba(0,0,0,0.1);
}


.button-producthunt {
	margin: 2px .7em 0 auto;
	width: 169px;
	height: 36px;
}

.button-producthunt img {
	width: 100%;
	height: 100%;
}


.articles .cards {
	display: flex;
	/*flex-wrap: wrap;*/
	/*justify-content: space-between;*/
	justify-content: left;
	/*flex-flow: column wrap;*/
	flex-direction: column;
  	flex-wrap: wrap;
	/*max-height: 16830px;*/
	width: calc(100% + 2em);
	margin-left: -1em;

	/*height: 100vw;*/
  	/*max-height: 800px;*/
}

/* Re-order items into 3 rows */
.cards-articles .card:nth-child(3n+1) { 
	order: 1;
}
.cards-articles .card:nth-child(3n+2) {
	order: 2;
}
.cards-articles .card:nth-child(3n)   {
	order: 3;
}

/* Force new columns */
.cards-articles::before,
.cards-articles::after {
  content: "";
  flex-basis: 100%;
  width: 0;
  order: 2;
}

.card-article {
	/*all: unset;*/
	/*flex: 1;*/
	position: relative;
	display: flex;
	flex-flow: column;
	/*margin: 0 0 2em 0;*/
	margin: 1em;
	/*margin: 0;*/
	padding: 0;
	width: calc(33.3% - 2em);
	/*width: 33.3%;*/
	min-height: initial;
	align-items: initial;
	background: #FFF;
	border-radius: .5em;
	overflow: hidden;
	z-index: 0;
	transition: var(--def-transition);
}
.card-article-source {
	position: absolute;
	top: 1rem;
	right: 1rem;
	border-radius: .3em;
	padding: .3em .4em .2em .4em;
	font: 600 1em/1em var(--font);
	z-index: 2;
	background: #fff;
	color: #111;
}
.card-article a {
	text-decoration: none;
}
.card-article span {
	display: block;
}
.card-article-cover {
	position: relative;
	width: 100%;
	height: 12rem;
	overflow: hidden;
	background: rgba(0,0,0,0.2);
	border-radius: .5em .5em 0 0;
	z-index: 1;
}
.card-article-cover::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 12rem;
	background: #000;
	opacity: 0;
	z-index: 1;
	transition: var(--def-transition);
}
.card-article-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--def-transition);
	z-index: 1;
}
.card-article-title {
	margin: 1.3rem 1.3rem 0 1.3rem;
	font: 800 1.3em/1.3em var(--font);
	color: rgba(0,0,0,0.8);
}
.card-article-teaser {
	margin: .6rem 1.3rem;
	max-height: 3em;
	overflow: hidden;
	font: 400 1em/1.4em var(--font);
}
.card-article-date-author {
	display: flex !important;
	margin: 0 1.3rem 1.3rem 1.3rem;
}
.card-article-pubdate {
	margin: 0;
}
.card-article-pubdate time {
	font: 400 .9em/1em var(--font);
	color: rgba(0,0,0,0.5);
}
.card-article-author {
	margin-left: auto;
	font: 400 .9em/1em var(--font);
	opacity: 0.8;
}
.card-article:hover {
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.01),
				0 3px 5px rgba(0, 0, 0, 0.02),
				0 5px 10px rgba(0, 0, 0, 0.03),
				0 10px 16px rgba(0, 0, 0, 0.04),
				0 18px 30px rgba(0, 0, 0, 0.05);
}
.card-article:hover img {
	transform: scale(1.2);
}
.card-article:hover .card-article-cover::before {
	opacity: 0.2;
}

.search-and-filters {
	display: flex;
	margin-bottom: 1em;
}
.search {
	display: flex;
}
.search-input {
	position: relative;
	display: inline-block;
}
.search-input i.reset {
	cursor: pointer;
	position: absolute;
	top: .7em;
	right: .7em;
	width: 1em;
	height: 1em;
	z-index: 1;
	/*transform: translate(-50%,0);*/
}
.search-input i.reset::before,
.search-input i.reset::after {
	background: #000;
}	
.search-input i.reset::before {	
	content: '';
	display: block;
	position: absolute;
	top: .5em;
	left: 0;
	width: 100%;
	height: 2px;
	transform: rotate(45deg);
}
.search-input i.reset::after {	
	content: '';
	display: block;
	position: absolute;
	top: .5em;
	left: 0;
	width: 100%;
	height: 2px;
	transform: rotate(-45deg);	
}

.search input {
	margin: 0;
}

.search button {
	display: inline-block;
	margin: 0 0 0 .5em;
	padding: 0.75em 1.25em;
	font: 800 1em/1em var(--font);
	text-align: center;
	color: var(--dark-cadet);
	background: #f0c099;
	border-radius: 0.25em;
}
.search button:hover {
	background: #f7bd8d;
}

.article-filters {
	display: flex;
	margin-left: auto;
}
.article-filters--tab {
	cursor: pointer;
	margin-left: .5em;
	padding: 0.75em 1.25em;
	font: 800 1em/1em var(--font);
	text-align: center;
	color: var(--dark-cadet);
	background: rgba(0,0,0,0.08);
	border-radius: 0.25em;
}
.article-filters--tab:hover,
.article-filters--tab.active {
	background: #fff;
}

.button-submit-job {
	margin: .5rem 0 0 0;
	padding: .8rem;
	width: 100%;
	text-align: center;
	font: 800 .9rem/1rem var(--font);
	background: #ba9cff;
	color: var(--color-dark);
	border-radius: .5em;
	text-decoration: none !important;
}


.submit-job {
	padding-bottom: 3em;
}

.submit-job .wrapper {
	max-width: 720px;
}

.submit-job .logo-placeholder {
	width: 5em;
	height: 5em;
	border: 2px dashed rgba(0,0,0,0.3);
	border-radius: .4em;
	background: #fff;
}

.submit-job .logo-placeholder:hover {
	border-color: #A988F6;
}

select {
	-webkit-appearance: none;
  -moz-appearance: none;
  
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: calc(100% - 4px);
  background-position-y: 6px;
}

.input-field {
	padding-bottom: .5rem;
}

.input-field span:nth-of-type(2) {
	opacity: .6;
	font-weight: normal;
}

.input-field label {
	padding: .5em 0;
	font: 700 .9rem/1.2rem var(--font);
}

.input-helper {
	padding: .4em 0;
	opacity: .8;
	font: 400 .85em/1.3em var(--font);
}

.button-submit-job-form {
	padding: .6em 1em;
	font: 800 1.15em/1.2em var(--font);
	background: #A988F6;
	color: var(--color-dark);
	border-radius: .5em;
	text-decoration: none !important;
	background: #30D6F2;
}

.button-change {
    font: 700 1.15em/1.2em var(--font);
    color: #111111;
    background: #e0e0e0;
}

.button-preview-job {
	margin-top: .5em;
	padding: .6em 1em;
	font: 800 1.15em/1.2em var(--font);
	color: var(--color-dark);
	background: var(--violet);
}

.input-radio {
	padding: .2em .8em .2em .8em;
	
	border-radius: .5em;
}

.job-duration .input-radio {
	background: rgba(255,255,255,0.6);
}





.floating-form {
	margin: 0 auto;
	padding: 2rem 2.5rem;
	max-width: 560px;
	background: #fff;
	border-radius: 1rem;
	box-shadow: var(--blkshdw);
}
.floating-form h1 {
	margin: 0;
}

.projects {
	/*max-width: 980px;*/
	width: calc(100% - 2.5rem);
	display: flex;
	gap: 2rem;
}

.project {
	/*padding-left: 1rem;*/
	align-items: center;
	gap: .2rem;
}

.projects-group .project {
	cursor: pointer;
}

.project:link{
  text-decoration: none!important;
}
.projects-group {
	padding-bottom: 1rem;
}
.projects-group h2 {
	/*padding-bottom: .5rem;
	font: 800 .8rem/1rem var(--font);
	text-transform: uppercase;
	font-weight: 600;*/
}
.projects-group-title {
	padding: 0 0 .4rem;
	font: 600 .9rem/1rem var(--font);
	text-transform: uppercase;
	opacity: .6;
}
.project-icon {
	height: 4rem;
	width: 4rem;
	/*padding-bottom: 4rem;*/
	background: #E9BA83;
	border-radius: .5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font: 800 1.8rem/1rem var(--font);
	text-transform: uppercase;
	color: #1C1C23;
}

.project-title {
	/*padding-bottom: .5rem;*/
	font: 700 1rem/1rem var(--font);
	text-transform: none !important;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.projects-info, .side-info {
	/*display: none;*/
	/*position: fixed;
	top: 40px;
	right: 40px;*/
	/*max-width: 400px;*/
	/*width: 36%;*/
	/*width: clamp(200px, 30%, 460px);*/
	width: 40%;
	min-height: 400px;
	background: #fff;
	border-radius: 1rem;
	box-shadow: var(--card-shadow);
}

.project .flex {
	padding: .5rem;
}

.project .project-info {
	padding: .2rem 0 1rem 0;
}

.project-tags {
	padding: 1rem 0;
}

.project-tags .tag {
	padding: .4rem .6rem;
	background: #fff;
	border: 1px solid #ccc;
	display: inline-block;
	border-radius: .4rem;
}

.project .button-contact {
	margin: 0;
}

.tag-category {
	text-transform: uppercase;
	font: 600 .8rem/1rem var(--font);
}

.side-info {
	position: fixed;
	min-width: 240px;
	width: calc(30% - 132px);
	right: 1.5rem;
	padding: 1.5rem;
	overflow: hidden;
	height: auto;
	min-height:auto;
}
.side-info h2 {
	padding: .2rem 0 0;
	font: 700 1.4rem/1.5rem var(--font);
}
.side-info ol {
	counter-reset: bumber;
  list-style: none;
  margin: 0;
  padding: 1rem 0 0 2rem;
}
.side-info ol li {
  counter-increment: bumber;
  position: relative;
  padding: .5rem 0;
  font: 400 .95rem/1.3rem var(--font);
}
.side-info ol li::before {
  content: counter(bumber);
  position: absolute;
  --size: 1.5rem;
  top: .4rem;
  left: calc(-1 * var(--size) - 10px);
  font: 600 .9rem/var(--size) var(--font);
  color: rgba(0, 0, 0, .8);
  width: var(--size);
  height: var(--size); 
  background: var(--veather);
  border-radius: 50%;
  text-align: center;
}

/*.project-details.active {
	display: flex;
}*/


.create-project {
	/*padding: 5rem 2rem;*/
	/*background-color: #fff;*/
	min-height: 100vh;
	height:100%;
}

.create-project > .flex > div {
	width: calc(50% - 96px);
}

.gap--1 { gap: 1rem; }
.gap--2 { gap: 2rem; }
.project-preview {
	display: flex;
	flex-flow: column;
	gap: 1rem;
	position: fixed;
	right: 2rem;
	padding: 2rem;
	border-radius:1rem;
	border: 1px solid #ccc;
}
.preview-category {
	display: none;
	align-self: flex-start;
	padding: .5rem 1rem;
	text-transform: uppercase;
	border: 1px solid #111;
	font: 400 .8rem/1rem var(--font);
	border-radius: .5rem;
}

.project-checkout {
	display: none;
}

.gumroad .cart-button {
    display: none !important;
}

.input-error-helper {
	color: red;
}

.project-description {
	padding: .5rem;
	font: 400 1rem/1.2rem var(--font);
}

.attachments-area {
	padding: .5rem;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: .5rem;
	max-width: 480px;
	min-height: 64px;
	border: 1px dashed rgba(0, 0, 0, .5);
	background: rgba(0, 0, 0, .05);
	border-radius: .5rem;
}

.attachments-list {
	padding: .5rem 0;
}

.attachments-list img {
	margin: 0 .5rem 0 0;
	width: 4rem;
	border-radius: .3rem;
}

.attachments-area button {
	background: #fff;
	color:#111;
	height: 2.5rem;
}

.attachments h2 {
	font-size: 1.2rem;
}

.attachments img {
	width: 8rem;
	height: auto;
	border-radius: .5rem;
}


.middle-column {
	width: calc(70% + 1rem);
}


/* TEMPORARY */

	a.post {
		display: none;
	}
/*	nav {
		margin-right: 10px;
	}*/


.notification-general {
	display: flex;
	flex-flow: column;
	gap: .5rem;
	padding: 1rem;
	background: #fff;
	border-radius: .5rem;
}

.action-group {
	display: flex;
	flex-flow: row;
	align-items: center;
	gap: 1rem;
	margin-left: auto;
	padding-right: .5rem;
}

.projects-group:nth-of-type(2) .project-status {
	display: none;
}

.button-delete {
	padding: .5rem;
	background: #ffd5b1;
}

button i {
	width: 1.5rem;
  height: 1.5rem;
  display: block;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-image: var(--icon);
  mask-image: var(--icon);

  /*background-image: linear-gradient(51deg, #8158E0 0%, #73A7FF 100%);*/
  background: var(--nightfall);
}

i.delete {
	--icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='3 6 5 6 21 6'%3E%3C/polyline%3E%3Cpath d='M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2'%3E%3C/path%3E%3Cline x1='10' y1='11' x2='10' y2='17'%3E%3C/line%3E%3Cline x1='14' y1='11' x2='14' y2='17'%3E%3C/line%3E%3C/svg%3E");
}

.fixed-title {
	position: fixed;
	top: 14px;
	z-index: 2;
	font-size: 1.5rem;
}

.projects-info { 
	position: fixed;
	width: calc(30% - 132px);
	right: 40px;
	padding: 1.5rem;
	overflow: hidden;
	height: auto;
	min-height:auto;
}

.img-with-overlay {
	position: relative;
	width: calc(100% + 3rem);
	margin: -1.5rem -1.5rem .5rem -1.5rem;
}

.img-with-overlay img {
	width: 100%;
}

.projects-info h2 {
	font: 800 1.5rem/2rem var(--font);
	color: #24115B;
}

.projects-info p {
	font: 400 1rem/1.5rem var(--font);
	color: #A199BA;
}

.projects-info .img-overlay {
	display: none;
}

.button-post-my-project {
	background: var(--nightfall);
}



@media screen and (max-width: 1032px) {
	section {
		padding-left: 256px;
	}
	.middle-column {
		width: calc(70% - 3rem);
	}
	.wrapper {
		width: calc(100% - 32px);
	}
	.card, .tool-card {
		width: calc(50% - 1.5em);
	}
}
@media screen and (max-width: 960px) {

	footer {
		margin: 0 auto;
		width: calc(100% - 32px);
		text-align: center;
	}

	.search-and-filters {
		display: flex;
		flex-flow: column;
	}
	.article-filters {
		margin: 1em 0 0 0;
		/*flex-wrap: wrap;*/
		width: 100%;
		min-width: 330px;
		overflow-x: scroll;
	}
	.article-filters--tab {
		margin: 0 .5em .5em 0;
	}
	.side-info,
	.projects-info {
		display: none;
	}
	.create-project > div .project-details-form {
		width: 100%;
	}
	.project-preview {
		display: none;
	}
	.jobs {
		width: 100%;
	}
	.middle-column {
		width: calc(100% - 2rem);
	}
}

@media screen and (max-width: 640px) {
	.menu input[type=checkbox] {
		display: block;
		cursor: pointer;
	}

	.hamburger {
		cursor: pointer;
		position: absolute;
		top: 50%;
		right: 1em;
		width: 1.5em;
		height: 1.5em;
		transform: translate(0,-50%);
	}
	.hamburger span {
		display: block;
		position: absolute;
		width: 100%;
		height: 2px;
		background: var(--color-dark);
		border-radius: 1px;
		transition: var(--def-transition);
	}
	.hamburger span:nth-of-type(1) {
		top: 3px;
		left: 0;
	}
	.hamburger span:nth-of-type(2) {
		top: 11px;
		left: 0;
	}
	.hamburger span:nth-of-type(3) {
		bottom: 3px;
		left: 0;
	}

	/*.hamburger input {
		cursor: pointer;
		position: absolute;
		top: 0;
		left: 0;
		opacity: 0;
		width: 100%;
		height: 100%;
	}*/

	.menu input {
		position: absolute;
		top: .5rem;
		right: .3rem;
		z-index: 7;
		width: 3rem;
		height: 3rem;
		opacity: 0;
	}

	.menu input:checked ~ .hamburger span:nth-of-type(1) {
		top: 11px;
		transform: rotate(45deg);
	}
	.menu input:checked ~ .hamburger span:nth-of-type(2) {
		display: none;
	}
	.menu input:checked ~ .hamburger span:nth-of-type(3) {
		bottom: 11px;
		transform: rotate(-45deg);
	}

	.menu input:checked ~ nav,
	.menu input:checked ~ nav ~ .menu-background {
		/*transform: rotate();*/
		display: flex !important;
	}

	.menu nav {
		/*width: 100%;*/
		/*height: 100vh;*/
		width: calc(100% - 8rem);
		height: calc(100vh - 200px);
		/*background: var(--space-cadet);*/
		top: 60px;
		left: 50%;
		position: absolute;
		background: #fff;
		z-index: 5;
		flex-flow: column;
		justify-content: center;
		transform: translate(-50%);
	}
	.menu-background {
		display: none;
		position: absolute;
		top: 60px;
		left: 0;
		width: 100%;
		height: calc(100vh - 90px);
		background: #fff;
	}

	header.expanded {
		top: 0;
		left: 0;
		padding: 2.05rem 2rem 2rem;
		width: 100%;
		height: 100vh;
		border-radius: 0;
		box-shadow: none;
		/*transition: all .02s ease-in-out;*/
	}
	.nav-account {
		/*margin-bottom: 1rem;*/
		margin: 0 0 1rem 0;
	}

	header.expanded .menu-background {
		height: calc(100vh - 60px);
	}
	header.expanded .menu input {
		top: 1.5rem;
		right: 1.3rem;
		transform: none;
	}
	header.expanded .hamburger {
		top: 2.3rem;
		right: 2rem;
		transform: none;
	}

	.button-login {
		margin-right: 4em;
	}


	header .profile {
		/*margin-right: 3.5em;*/
		margin: 0;
	}

	nav {
		display: none;
	}

	nav a:first-of-type {
		/*margin-top: -64px;*/
	}

	nav a {
		display: flex;
		align-items: baseline;
	}
	nav > a {
		padding: 0 0 0 1rem;
	}
	.homepage nav > a {
		padding: 0;
	}
	nav a span {
		display: flex;
		align-items: baseline;
		font: 700 1.1em/3em var(--font);
	}
	nav a i {
		position: relative;
		display: block;
		right: initial;
		margin-left: 1em;
	}

	nav a.active {
		border-bottom: none !important;
	}

	.homepage section {
		padding: 1.5rem min(8rem, 5%);
	}

	.homepage h1 {
		font: 800 1.5rem/2rem var(--font);
	}

	.subscription-box form {
		flex-flow: column;
	}
	.subscription-box input,
	.subscription-box button {
		margin: 0;
		width: 100%;
	}

	.subscription-box button {
		margin-top: 0.5em;
	}

	.tool-cards {
		justify-content: flex-start;
		flex-wrap: wrap;
	}
	.tool-card {
		width: calc(50% - .5em);
		margin: 0 1em 1em 0;
	}
	.tool-card:nth-child(2) {
		margin-right: 0;
	}

	.fixed-title {
		position: relative;
	}

	.card {
		width: calc(33.3% - 1em);
	}

	.table .th {
		display: none;
	}

	.table .tr {
		margin-bottom: 1em;
		padding: 1em;
		flex-flow: column;
		border-radius: .3em;
		overflow: hidden;
		background: #FFF;
	}
	.table .tr:before {
		display: none;
	}

	.table .tr .td {
		width: 100%;
		height: auto;
		/*white-space: normal;*/
	}

	.rates-table .td:nth-of-type(5) { /*completed*/
		display: none;
	}

	.auth {
		/*efefef*/

		background: rgb(239,239,239);
		background: -moz-linear-gradient(top, rgba(239,239,239,1) 0%, rgba(239,239,239,1) 100%);
		background: -webkit-linear-gradient(top, rgba(239,239,239,1) 0%,rgba(239,239,239,1) 100%);
		background: linear-gradient(to bottom, rgba(239,239,239,0) 0%, rgba(239,239,239,1) 60%, rgba(239,239,239,1) 100%);
	}

	.auth-form {
		display: flex;
		flex-flow: column;
		align-items: center;
		width: calc(100% - 4em);
	}

	.auth-form * {
		width: 100% !important;
		margin: 0 0 1em 0 !important;
	}

	.tweets {
		display: flex;
		flex-flow: column;
		width: 100%;
	}

	.twitter-tweet-rendered {
		--width: 100%;
		margin-right: 0;
	}

	.articles .cards {
		flex-flow: column;
	}
	.card-article {
		display: block;
		width: calc(100% - 2em) !important;
		min-height: auto;
		overflow: initial;
	}
	.button-submit-job {
		margin-right: 56px;
	}

	header {
		padding: 1rem;
		width: calc(100% - 2rem);
		left: 1rem;
		top: 1rem;
		gap: 0;
		z-index: 2;
	}
	header .button-submit-job {
		display: none;
	}
	.side-info {
		display: none;
	}
	.middle-column {
		width: 100%;
	}
	section, .jobs {
		padding: 6rem 1rem 2.5rem 1rem;
		margin: 0;
		width: 100%;
	}
	section h1 {
		/*line-height: 2.4rem;*/
		font: 800 1.8rem/2rem var(--font);
	}
	.subscription-box h2 {
		font: 800 1.2rem/1.4rem var(--font);
	}
	.job-desc {
		padding: .5rem;
	}

	.projects {
		width: 100%;
	}
	.project-icon {
		flex-shrink: 0; 
		width: 4rem;
		height: 4rem;
	}
	.project-title {
		font: 700 .9rem/1.2rem var(--font);
	}
	.project .flf--c {
		width: 60%;
	}
	.action-group {
		gap: 0;
	}
	.project-status{
		position: absolute;
		right: 4rem;
		bottom: 1.2rem;
	}

	section.flf--r {
		flex-flow: column;
	}
	section.flf--r.gap--2 {
		gap: 1rem;
	}
	.large-card {
		padding: 1.5rem;
		width: 100%;
		border-radius: .8rem;
	}
	.cards, .tool-cards {
		gap: 0;
	}
	.tool-card.empty {
		display: none;
	}
	.input-field label {
		/*flex-flow: column;*/
	}
	.button-create-project {
		display: none;
		position: absolute;
		bottom: 3rem;
		width: calc(100% - 2.3rem);
		z-index: 5;
	}
	header.expanded .button-create-project {
		display: block;
	}

	.auth {
		left: 0;
		width: 100%;
	}
	.projects-info {
		position: relative;
		width: 100%;
		right: 0;
	}
}

@media screen and (max-width: 414px) {
	/*section h1 {
		font-size: 32px;
	}*/

	.homepage > div {
		gap: 2rem;
		flex-flow: column;
	}
	.homepage > div > div {
		justify-content: center;
	}
	.homepage nav {
		padding: 0 .5rem;
		justify-content: space-between;
	}

	section h1 {
		padding-bottom: 1rem;
	}

	.subscription-box input {
		border: initial;
		-webkit-appearance: none;
	}

	.cards,
	.tool-cards {
		flex-flow: column;
	}

	.card,
	.tool-card {
		width: 100%;
		margin-bottom: 1em;
	}

	.pop-up {
		top: 60px;
		left: 0;
		transform: none;
		border-radius: 0;
		width: 100%;
		height: 100vh;
	}

	.button-producthunt {
		display: none;
	}

	.search,
	.search-input,
	.search-input input {
		width: 100%;
	}
	.search button {
		padding: 0.75em .75em;
		/*margin: 0.5em 0 0 0;*/
		/*width: 100%;*/
		/*display: none;*/
	}
	.create-project div .project-details-form {
		width: 100%;
	}
	.project-preview {
		display: none;
	}
}

@media screen and (max-width: 375px) {
	
}



@media (prefers-color-scheme: dark) {

	:root {
		--violet: #A988F6;
		--nightfall: #FFFFFF;
		--veather: rgba(231,231,251,0.2);
	}

	.side-info ol li::before {
		color: #fff;
	}

	body {
    	color: #FFF;
    	background: #26252B;
	}

	div, h1, h2, h3, h4, p, a, li {
		color: #FFF;
	}

	header {
		background: var(--charcoal);
		border: 1px solid #26252B;
	}

	.nav-account {
		background: #33313B;
	}

	nav a.inactive {
		color: rgba(255,255,255,0.7);
	}

	nav a.active {
		border-bottom: 2px solid #FFF;
	}

	nav a i {
		background: #fd742c;
	}

	footer {
		color: #B0BBE5;
		opacity: .6;
	}

	footer a {
		color: #B0BBE5;	
	}

	.homepage {
		background: #230369;
	}
	.homepage .button-primary {
		color: #230369;
	}
	.homepage .button-primary:hover {
		background: rgba(255, 255, 255, .9);
	}
	.homepage .button-secondary {
		background: rgba(255, 255, 255, .1);
	}
	.homepage .button-secondary:hover {
		background: rgba(255, 255, 255, .15);
	}

	.last-updated {
		color: rgba(255,255,255,0.65);
	}

	.filters span {
		background: rgba(255,255,255,0.05);
	}
	.filters span.active,
	.filters span:hover {
		background: var(--charcoal);
	}


	.job,
	.subscription-box {
		background: var(--charcoal);
	}

	.subscription-box input {
		background: #FFF;
		border: none;
		box-shadow: none;
	}

	.card-slim:hover{
		background: var(--space-cadet-hover);
	}

	.coffee-cup, .coffee-cup:after {
		border-color: var(--color-white);
	}
	.coffee-cup:before {
		background-color: var(--color-white);
		 box-shadow: 5px 0px 0px 0px var(--color-white),
                5px -5px 0px 0px var(--color-white),
                10px 0px 0px 0px var(--color-white);
    -webkit-animation: steam 1s linear infinite alternate;
       -moz-animation: steam 1s linear infinite alternate;
            animation: steam 1s linear infinite alternate;
	}

	.currently {
		color: var(--color-white);
	}

	.table .tr {
		background: var(--charcoal);
	}


	.table .tr:before {
		background: -moz-linear-gradient(top, rgba(65,63,73,0) 0%, rgba(65,63,73,1) 83%, rgba(65,63,73,1) 100%); 
		background: -webkit-linear-gradient(top, rgba(65,63,73,0) 0%,rgba(65,63,73,1) 83%,rgba(65,63,73,1) 100%);
		background: linear-gradient(to bottom, rgba(65,63,73,0) 0%,rgba(65,63,73,1) 83%,rgba(65,63,73,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
	}

	.table .th .td,
	.table .tr .td {
		background: var(--charcoal);
	}

	.table .th.fixed {
		background: var(--charcoal);
	}

	.table .th.fixed:after {
		background: #26252B;
	}
	
	.meta.source {
		color: rgba(255,255,255,0.3);
	}

	.card,
	.tool-card {
		background: var(--space-cadet);
	}
	.card.active:hover,
	.tool-card.active:hover {
		background: var(--space-cadet-hover);
	}

	.soon .tool-name {
		color: rgba(255,255,255,0.7);
	}

	.soon .tool-name i {
		background: var(--dark-cadet);
		color: rgba(255,255,255,0.5);
	}

	.company-logo {
		background: #fff;
	}

	.auth {
		background: rgb(43,51,84); /* Old browsers */
		background: -moz-linear-gradient(top, rgba(43,51,84,1) 0%, rgba(38,37,43,1) 100%); /* FF3.6-15 */
		background: -webkit-linear-gradient(top, rgba(43,51,84,1) 0%,rgba(38,37,43,1) 100%); /* Chrome10-25,Safari5.1-6 */
		background: linear-gradient(to bottom, rgba(43,51,84,0) 0%, rgba(38,37,43,1) 70%, rgba(38,37,43,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	}

	.blackout {
		background: rgba(28,34,56,0.9);
	}

	.pop-up {
		background: var(--space-cadet);
	}

	.pop-up input {
		color: #fff;
	}

	.pop-up-close:before,
	.pop-up-close:after {
		background: #fff;
	}

	.floating-label {
		background: var(--space-cadet);
	}

	.menu-background,
	.menu input:checked ~ nav {
		background: var(--charcoal);
	}

	/*.menu nav {*/
	/*.menu input:checked ~ nav {
		background: var(--space-cadet);
	}*/

	.hamburger span {
		background: #fff;
	}

	.card-article-title {
		color: #fff;
	}

	.card-article-pubdate time {
		color: rgba(255,255,255,0.8);
	}

	input, select, textarea {
		/*background: #fff !important;
		border-color: transparent !important;
		color: #000 !important;*/
		background: #131314 ;
		border-color: transparent ;
		color: #fff ;
	}

	.input-error {
	    background: #33252e !important;
	}

	input::placeholder {
		color: #808080 !important;
	}

	input:focus::placeholder {
		color: transparent !important;
	}

	.article-filters--tab {
		background: var(--space-cadet);
		color: #fff;
	}
	.article-filters--tab.active,
	.article-filters--tab:hover {
		background: #45507d;
	}

	.job-duration .input-radio {
		background: rgba(0,0,0,0.6);
	}

	.card-slim {
		background: var(--charcoal);
	}

	.card-slim.paid {
	    border: 2px solid #aa85ff;
	}

	.button-submit-job,
	.job.paid .button-apply {
		background: var(--violet);
	}

	.floating-form,
	.project-preview,
	.large-card {
		background: var(--charcoal);
		border: none;
	}
	.floating-form input {
		background: rgba(0, 0, 0, .3);
	}
	.preview-category {
		background: rgba(255, 255, 255, .15);
		border: none;
	}
	.input-helper {
		opacity: .5;
	}
	.button-post-my-project {
		background: #ffffff;
		color: #26252B;
	}
	.attachments-area {
		background: rgba(0, 0, 0, 0.21);
	}
	.attachments-area button {
		background: rgba(255, 255, 255, 0.22);
		color: #fff;
	}
	.projects-info { 
		background: var(--charcoal);
	}

	.side-info {
		background: var(--charcoal);
	}
	.projects-info .img-overlay {
		display: block;
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 104px;
		background-image: linear-gradient(0deg, #413F49 0%, rgba(65,63,73,0.00) 100%);
	}
	.projects-info h2 {
		color: #ffffff;
	}
	.projects-info p {
		color: rgba(255,255,255,0.6);
	}
	.button-check-user-bottom {
		background: var(--color-yellow);
		color: #131314;
	}
	.button-create-project {
		color: var(--charcoal);
	}
}