/*!
Theme Name: ideoz-wordpress
Theme URI: http://underscores.me/
Author: sieraj
Author URI: https://www.sieraj.com/
Description: ideoz By Sieraj
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: ideoz
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

ideoz is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

.content-info {
	padding: var(--space-xl) 0;
	background: #fff;
	min-height: 50vh;
}

.auth__title {
	font-size: var(--font-size-l);
}

.auth__subtitle {
	font-size: var(--font-size-h6);
}

form {
	margin-top: 30px;
}

.form-control {
	height: 56px;
	padding: var(--space-base) var(--space-m);
	background: transparent;
	border: 0.5px solid #D0D5DD;
	width: 100%;
	color: var(--color-gray-500);
}

.form-control:focus {
	background: transparent;
	color: var(--color-gray-500);
}

.form-group {
	margin-bottom: 16px;
}

.form-group label {
	display: block;
}

#msg,
#project-msg,
#project-delete-msg {
	padding: 10px;
	border-radius: 5px;
	margin: 20px 0;
}

.alert-danger {
	color: #d63636;
	background: #f5f5f5;
}

.alert-success {
	color: black;
	background-color: #22D600;
}

.complete-profile .control-label {
	font-weight: bold;
	color: #004b93;
	font-size: 18px;
}

.complete-profile .form-group {
	margin-bottom: 30px;
}

.workspace-side-list {
	margin-top: var(--space-xxl);
}

.workspace-side-list ul {
	list-style: none;
	padding: 0;
}

.workspace-side-list h4 {
	color: #004b93;
}

.workspace-side-list ul li a {
	margin-top: var(--space-base);
	display: inline-block;
	color: #000;
	border-radius: 5px;
	transition: all ease-in-out 0.3s;
	padding: 5px 10px;
	padding-inline-start: 0;

}

.workspace-side-list ul li a:hover {
	background: #eee;
	color: #004b93;
	padding-inline-start: 10px;
}

.control-value {
	font-size: var(--font-size-h5);
	font-weight: bold;
}

.main-section {
	border-bottom: 2px solid #ddd;
	padding: var(--space-l) 0;
}

.main-section #msg {
	display: none;
}

.project-card {
	background: #eee;
	border: 1px solid #ddd;
	border-radius: 3px;
	position: relative;
}

.create-project {
	text-align: center;
	padding: 30px 10px;
	cursor: pointer;
	transition: all ease-in-out .3s;
}

.create-project:hover {
	background-color: #fff;
}

.create-project:hover>p {
	color: #004b93;
}

.create-project p {
	margin-top: 20px;
	font-weight: bold;
	text-transform: uppercase;
}

.create-project img {
	width: 80px;
}

.project-item img {
	max-width: 100%;
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.project-content {
	padding: 10px;
}

.project-content p {
	font-size: 14px;
	margin: 5px 0;
}

.project-content a {
	margin: 5px 0;
}

.project-actions {
	display: flex;
	flex-direction: column;
	position: absolute;
	left: 10px;
	top: 10px;
	background: #eee;
	padding: 0px 10px 8px 10px;
	border-radius: 3px;
}

.project-actions span {
	font-weight: bold;
}

.project-actions a {
	display: none;
	margin-top: 15px;
	font-size: 12px;
	color: #000;
}

.project-actions:hover>a {
	display: block;
}

.project-actions>a:hover {
	color: #004b93;
	font-weight: bold;
}

.project-actions-view,
.project-delete-view {
	position: absolute;
	top: 0;
	background: rgba(0, 0, 0, .75);
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	padding: 20px;
	left: 0;
	border-radius: 3px;
}

.project-actions-view .button--secondary,
.project-delete-view .button--secondary {
	color: #fff;
}

.project-delete-view p {
	color: #fff;
}

.project-delete-view p span {
	font-weight: bold;
}