/*
 * Copyright 2020-Present Titan Informatics LLC. All Rights Reserved.
 *
 * Proprietary and Confidential.
 * Author: Titan Informatics Team
 *
 * This source code is the exclusive property of Titan Informatics LLC.
 * Unauthorized use, reproduction, disclosure, or distribution without written permission is strictly prohibited.
 */
:root {
	--font-family: "The US Daily News";
	--font-family2: "The US Daily News2";
	--font-family3: "RobotoSlab";
	--font-size: 1.063rem;
}

[data-target]:hover {
	color: var(--blue1);
}

input,
textarea,
button,
label {
	font-family: var(--font-family);
	font-size: var(--font-size);
	width: 100%;
	border-radius: unset;
	/*border-radius: 4px;*/
	border: var(--border);
	background: var(--white);
	color: var(--252525);
	-webkit-box-shadow: 0 0 20px -10px rgba(0, 0, 0, 0.2);
	   -moz-box-shadow: 0 0 20px -10px rgba(0, 0, 0, 0.2);
			box-shadow: 0 0 20px -10px rgba(0, 0, 0, 0.2);
}
input {
	padding: 14px 15px;
}
input[type="file"] {
	display: none;
}
textarea {
	min-height: 50px;
	max-height: 100%;
}
textarea,
label {
	padding: 13px 15px;
	line-height: 1.375rem;
	resize: none;
}
button {
	font-weight: 500;
	/*width: auto;*/
	padding: 15px;
	float: right;
	color: var(--f6f6f6);
	background: var(--blue1);
	-webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05) inset;
	   -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05) inset;
			box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05) inset;
	transition: all 0.2s ease;
	border: var(--border-transparent);
	text-transform: capitalize;
	cursor: pointer;
}

button:hover {
	color: var(--white);
	background: var(--blue2);
	border-color: var(--border-hover);
}

[data-name="modal"] {
	min-width: 350px;
	position: fixed;
	top: 20%; left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	flex-flow: row wrap;
	background: var(--white);
	-webkit-box-shadow: 0 0 25px -15px rgba(0, 0, 0, 0.5);
	   -moz-box-shadow: 0 0 25px -15px rgba(0, 0, 0, 0.5);
			box-shadow: 0 0 25px -15px rgba(0, 0, 0, 0.5);
	transition: top 0.2s ease, opacity 0.2s ease;
	z-index: 5;
}
[data-name="backdrop"] {
	width: 100%; height: 100%;
	position: fixed;
	top: 0;	left: 0;
	background: var(--015);
	z-index: 4;
}
[data-name="modal"],
[data-name="backdrop"] {
	opacity: 0;
	pointer-events: none;
}
[data-name="backdrop"] {
	transition: opacity 0.2s ease;
}
[data-name="modal"].active,
[data-name="backdrop"].active {
	opacity: 1;
	pointer-events: auto;
}
[data-name="modal"].active {
	top: 50%;
}

[data-modal="delete"] {
	max-width: 400px;
	text-align: center;
}
[data-modal="delete"] [data-alert="delete"] {
	padding: 12px 15px;
	flex: 0 0 100%;
	border-bottom: var(--border);
}
[data-modal="delete"] [data-alert="delete"] strong {
	/*font-weight: 600;*/
	color: var(--blue3);
}
[data-modal="delete"] [data-action="yes"],
[data-modal="delete"] [data-action="no"] {
	padding: 12px;
	flex: 1;
	cursor: pointer;
}
[data-modal="delete"] [data-action="yes"] {
	border-right: var(--border);
}
[data-modal="delete"] [data-action="yes"]:hover,
[data-modal="delete"] [data-action="no"]:hover {
	background: var(--005);
	color: var(--blue3);
}

[data-error] {
	font-size: 14px;
	line-height: 10px;
	position: absolute;
	bottom: 100%; left: 0;
	color: var(--red);
	z-index: 1;
}
[data-error]::first-letter {
	text-transform: uppercase;
}

[data-name="copyright"] {
	font-size: 0.875rem;
	position: absolute;
	bottom: 16px; left: 50%;
	transform: translateX(-50%);
}
[data-name="copyright"] [data-year="current"],
[data-name="copyright"] [data-year="current"]::before,
[data-name="copyright"] [data-year="current"]::after {
	position: relative; float: left;
}
[data-name="copyright"] [data-year="current"] {
	margin: 0 5px 0 0;
}
[data-name="copyright"] [data-year="current"]::before {
	font-family: "Font Awesome 6 Sharp";
	font-size: 1rem;
	font-weight: 300;
	content: "\f1f9";
	margin: -1px 3px 0 0;
}
[data-name="copyright"] [data-year="current"]::after {
	content: "2020 -";
	margin: 0 3px 0 0;
}

@media (min-width: 1440px) {

}
@media (max-width: 1440px) {

}
@media (max-width: 1280px) {

}
@media (max-width: 1280px) {

}
@media (max-width: 980px) {

}
