/*
 * 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 {
	--fff: #fff;
	--fcfcfc: #fcfcfc;
	--f4f4f4: #f4f4f4;
	--f6f6f6: #f6f6f6;
	--f7f7f7: #f7f7f7;
	--f3f6f9: #f3f6f9;
	--f3f3f3: #f3f3f3;
	--f2f2f2: #f2f2f2;
	--f1f1f1: #f1f1f1;
	--f0f0f0: #f0f0f0;
	--eee: #eee;
	--e5e5e5: #e5e5e5;
	--d5d5d5: #d5d5d5;
	--3285D7: #3285D7;
	--e5191f: #e5191f;
	--dadada: #dadada;
	--rgba005: rgba(0, 0, 0, 0.05);
	--rgba002: rgba(0, 0, 0, 0.02);
	--rgba01: rgba(0, 0, 0, 0.1);
	--rgba015: rgba(0, 0, 0, 0.15);
	--rgba02: rgba(0, 0, 0, 0.2);
	--rgba04: rgba(0, 0, 0, 0.4);
	--rgba05: rgba(0, 0, 0, 0.5);
}

html,
body {
	height: 100%;
}
body {
	font-family: "The US Daily News";
	/*font-family: "RockwellStd";*/
	/*font-size: clamp(0.938rem, 1vw + 0.5rem, 1rem);*/
	font-size: clamp(0.875rem, 1vw + 0.5rem, 0.938rem);
	/*font-weight: 500;*/
	min-height: 100%;
	color: var(--text-color-1);
	/*background: var(--f7f7f7);*/
	background: var(--f2f2f2);
	/*background: var(--background-5);*/
}
body * {
	font-weight: 400;
}
header,
nav,
main,
article,
footer,
aside {
	position: relative;
	float: left;
	background: inherit;
}

input,
textarea,
button,
label {
	font-family: "The US Daily News";
	font-size: clamp(0.875rem, 1vw + 0.5rem, 0.938rem);
	width: 100%;
	border-radius: unset;
	border: var(--border);
	background: var(--fff);
	color: var(--text-color-1);
	-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,
button {
	padding: 14.5px 15px;
}
input[type="file"] {
	display: none;
}
textarea {
	min-height: 50px;
	max-height:100%;
}
textarea,
label {
	padding: 15px;
	line-height: 1.25rem;
	resize: none;
}
button {
	font-weight: 500;
	width: auto;
	float: right;
	background: var(--dadada);
	-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-in-out;
	cursor: pointer;
}

button:hover {
	color: var(--fff);
	background: var(--3285D7);
	border-color: var(--border-hover);
}

/*[data-type="options"] {
	background: var(--fff);
}
[data-type="options"]::before {
	border: var(--border);
	-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);
}
[data-type="options"] ul {
	max-height: 401px;
	border: var(--border);
	box-shadow: var(--box-shadow-options);
}
[data-type="options"] li {
	border-bottom: var(--border);
}

[data-type="modal"] {
	min-width: 350px;
	position: fixed;
	top: 0; left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	flex-flow: row wrap;
	background: var(--modal);
	-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-type="backdrop"] {
	width: 100%; height: 100%;
	position: fixed;
	top: 0;	left: 0;
	background: var(--backdrop);
	z-index: 4;
}
[data-type="modal"],
[data-type="backdrop"] {
	opacity: 0;
	pointer-events: none;
}
[data-type="backdrop"] {
	transition: opacity 300ms ease;
}

[data-type="modal"].active,
[data-type="backdrop"].active {
	opacity: 1;
	pointer-events: auto;
}
[data-type="modal"].active {
	top: 50%;
}

[data-type="modal"] span {
	width: 50%;
	padding: 11px 10px 12px 10px;
	text-align: center;
}
[data-type="modal"] span:nth-of-type(1) {
	width: 100%;
	padding: 14px 10px 13px 10px;
	border-bottom: var(--border);
}

[data-type="modal"] span:nth-last-of-type(1) {
	border-left: var(--border);
}
[data-type="modal"] span:nth-last-of-type(1):hover,
[data-type="modal"] span:nth-last-of-type(2):hover {
	background: #5596ee;
	color: #fff;
	cursor: pointer;
}
[data-type="modal"] span strong {
	font-weight: 500;
}
*/

[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;
}

[data-error] {
	font-size: 0.813rem;
	line-height: 0.938rem;
	position: absolute;
	bottom: calc(100% - 7.5px); left: 5px;
	color: rgba(213, 16, 67, 0.95);
	z-index: 2;
}

[data-name="image"] {
	display: flex;
	flex-direction: row;
}
[data-name="image"] img {
	width: auto;
	max-width: 50px;
	min-height: 50px;
	height: 100%;
	max-height: 50px;
	border: var(--border);
	border-right: unset;
	background: var(--fff);
}
[data-name="image"] [textarea] {
	width: 100%;
}

figure {
    position: relative;
    float: left;
    display: flex;
    flex-flow: column nowrap;
}
figure.maximized {
    width: 100%;
    height: 100%;
    position: fixed; float: unset;
    top: 0; left: 0;
}
figure [data-action="play"],
figure [data-action="pause"] {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0; left: 0;
}
figure [data-action="maximize"],
figure [data-action="minimize"] {
    position: absolute;
    top: 10px; right: 10px;
}
figure [data-action]::before {
    font-family: "Font Awesome 6 Sharp";
    font-weight: 500;
    font-size: 1.5rem;
    position: relative; float: left;
    color: var(--rgba05);
    cursor: pointer;
}

figure [data-action="play"]::before {content: "\f144";}
figure [data-action="pause"]::before {content: "\f28b";}
figure [data-action="maximize"]::before { font-weight: 400;content: "\f31d";}
figure [data-action="minimize"]::before { font-weight: 400;content: "\e0a5";}

figure [data-action="play"]::before,
figure [data-action="pause"]::before {
    font-size: 6.25rem;
    font-weight: 500;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}



@media (max-width: 1280px) {

}
@media (max-width: 1280px) {
	aside {
		width: 250px;
		min-width: 250px;
	}
}
@media (max-width: 980px) {
	aside {
		width: 200px;
		min-width: 200px;
	}
}

@media (min-width: 1440px) {

}
@media (max-width: 1440px) {

}

