:root {
	--app_family_font: "Comfortaa";
	--app_font_size: 14px;
	--body_background_color: #181818;
	--header_background_color: #232425;
	--content_background_color: #181818;
	--footer_background_color: #6F0F6F;
	--screen_background_color: #6f028b;
	--screen_foreground_color: #181818;	
}

@font-face {
	font-family: "RobotoCondensed-Regular";
	src: url("../ttf/RobotoCondensed-Regular.ttf");
}

@font-face {
	font-family: "Comfortaa";
	src: url("../ttf/Comfortaa-VariableFont_wght.ttf");
}

@font-face {
	font-family: "Comfortaa-Medium";
	src: url("../ttf/Comfortaa-Medium.ttf");
}

@font-face {
	font-family: "Fredoka";
	src: url("../ttf/Fredoka-VariableFont_wdth,wght.ttf");
}

*,
*::before,
*::after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	margin: 0;
	padding: 0;
	border: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	display: flex;
	width: 100vw;
	height: 100vh;
	justify-content: center;
	align-items: center;
	background-color: var(--body_background_color);
}

.screen {
	border: none;
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 0;
	bottom: 0;
	padding: 0;
	margin: 0;
	opacity: 0;
	height: 100%;
	width: 100%;
//	background-color: var(--screen_background_color);
	background-color: orange;
	color: var(--screen_foreground_color);
	font-family: var(--app_family_font);
	font-size: var(--app_family_size);
//	max-width: 640px;
}

.content {
	display: flex;
	height: 100%;
	width: 100%;
/*
	padding: 2px 4px 2px 4px;
*/
	padding: 0;
	overflow: auto;
	background-color: var(--content_background_color);
	color: #fefefe;
	font-size: var(--app_content_font_size);
}

.content::-webkit-scrollbar {
    display: none;
}

.content {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.header {
	display: block;
	width: 100%;
	border: none;
	height: auto;
	background-color: var(--header_background_color);
	color: #fefefe;
	padding: 8px 0px;
}

.footer {
	display: block;
	width: 100%;
	border: none;
	height: auto;
	background-color: var(--header_background_color);
	color: #fefefe;
}

.div_logo {
	display: flex;
	width: 100%;
	font-family: 'Fredoka';
	font-size: 28px;
	font-weight: 600;
	justify-content: center;
	padding-top: 6px;
	padding-bottom: 6px;
}

.radio-toolbar input[type="radio"] {
  display: none;
}

.radio-toolbar label {
	background-color: transparent;
	border: 1px solid #dedede;
	color: var(--app_page_foreground_color);
	padding: 7px 10px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	margin: 4px 2px;
	cursor: pointer;
	border-radius: 16px;
	white-space: nowrap;
	font-size: 14px;
}

.radio-toolbar input[type="radio"]:checked+label {
  background-color: #dedede;
  color: #000000;
}

.check-toolbar input[type="checkbox"] {
	display: none;
}

.check-toolbar label {
	background-color: transparent;
	border: 1px solid #dedede;
	color: #ffffff;
	padding: 7px 10px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	margin: 4px 2px;
	cursor: pointer;
	border-radius: 16px;
	font-family: var(--app_family_font);
	font-size: 14px;
}

.check-toolbar input[type="checkbox"]:checked+label {
	background-color: #ffffff;
	color: #000000;
}

.image_skeleton {
	background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
	background-size: 200% 100%;
	animation: 1s skeleton-shine linear infinite;
}

@keyframes skeleton-shine {
	to {
		background-position-x: -200%;
	}
}

.largeButton {
	font-size: var(--app_font_size);
	font-family: var(--app_family_font);
	color: var(--app_button_foreground_color);
	background-color: var(--app_button_background_color);
	width: 100%;
	padding: 10px 10px;
	margin-top: 10px;
	display: inline-block;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	cursor: pointer;
}

.fade-in {
	opacity: 1;
	transition: opacity .2s ease-out;
	z-index: 10
}

.fade-out {
	opacity: 0;
	transition: opacity .2s ease-out;
	z-index: 0;
}

@-webkit-keyframes fadein {
	from {bottom: 0; opacity: 0;} 
	to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
	from {bottom: 0; opacity: 0;}
	to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
	from {bottom: 30px; opacity: 1;} 
	to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
	from {bottom: 30px; opacity: 1;}
	to {bottom: 0; opacity: 0;}
}

.chip {
	display: flex;
	border: 1px solid #646464;
	padding: 6px 10px;
	border-radius: 16px;
	margin-right: 4px;
	margin-bottom: 6px;
	font-size: 14px;
	word-break: keep-all;
}

input {
	width: 100%;
	border: none;
	border-bottom: 1px solid #cdcdcd;
	color: #fefefe;
	background-color: transparent;
	font-size:  var(--app_font_size);
	outline: none;
	margin-top: 6px;
	text-decoration: none;
}

.loader {
	border: 6px solid #f3f3f3;
	border-radius: 50%;
	border-top: 6px solid #3498db;
	width: 120px;
	height: 120px;
	-webkit-animation: spin 1s linear infinite; /* Safari */
	animation: spin 1s linear infinite;
	display: flex;
	position: absolute;
	z-index: 100;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

[data-id='div_snackbar'] {
	visibility: hidden;
	min-width: 250px;
	margin-left: -125px;
	text-align: center;
	border-radius: 3px;
	padding: 16px;
	position: fixed;
	z-index: 100;
	left: 50%;
	bottom: 30px;
	font-family: var(--app_family_font);
	font-size: 14px;
	font-weight: 600;
	background-color: #333;
	color: #fff;
}

[data-id='div_snackbar'].show {
	visibility: visible;
	-webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
	animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
/*

[data-id='div_loader'] {
	visibility: hidden;
	display: flex;
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 100;
	justify-content: center;
	align-items: center;
	background-color: rgba(180, 180, 180, 0.4);
}

[data-id='div_loader'] .show {
	visibility: visible;
}

[data-id='div_loader'] .hide {
	visibility: hidden;
}
*/

.truncar_texto {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
