@font-face {
    font-family: "Inter Bold";
	src: url('../css/fonts/Inter-Bold.woff2') format('woff2'),
        url('../css/fonts/Inter-Bold.woff') format('woff'),
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter Regular";
	src: url('../css/fonts/Inter-Regular.woff2') format('woff2'),
        url('../css/fonts/Inter-Regular.woff') format('woff'),
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Hind Bold";
    src: url('../css/fonts/hind-bold.otf') format('opentype'),
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Hind Semibold";
    src: url('../css/fonts/hind-semibold.otf') format('opentype'),
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Hind Medium";
    src: url('../css/fonts/hind-medium.otf') format('opentype'),
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Hind Light";
    src: url('../css/fonts/hind-liht.otf') format('opentype'),
    font-style: normal;
    font-display: swap;
}
html {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    font-size: 10px;
    line-height: 24px;
}
body{

}

:root{
	--default_color: #ebd7be;
	--default_blue: #214c81;
	--default_orange: #e08c32;
	--default_red: #a53622;

	--hind-bold: "Hind Bold", "Hind", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
	--hind-medium: "Hind Medium", "Hind", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
	--hind-semibold: "Hind Semibold", "Hind", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
	--hind-regular: "Hind Regular", "Hind", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;

	--inter-regular: "Inter Regular", "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
	--inter-bold: "Inter Bold", "Inter", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
}

*{
	margin: 0;
	padding: 0;
}

p {
	font-family: var(--hind-medium);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--hind-semibold);
}

section h1,
article h1,
aside h1,
nav h1 {
    font-size: 1.2em;
}
iframe {
	display: none!important;
}

.inter-regular {
	font-family: var(--inter-regular);
}
.inter-bold {
	font-family: var(--inter-bold);
}

.flex {
	display: flex;
    justify-content: center;
    align-items: center;
}
.flex-col {
	flex-direction: column;
}
.items-center {
	align-items: center;
}
.justify-center {
	justify-content: center;
}

.config_cta {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    border-top-left-radius: 80px;
    background: var(--default_red);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    border: none;
}
.config_content{
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    max-width: 0px;
    max-height: 0px;
    overflow: hidden;
    background: var(--default_red);
    z-index: 3;
    transition: all 0.3s ease-out;
}
.hidden {
	display: none!important;
}
.controlls {
	width: 300px;
	max-width: 300px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	flex-direction: column;
	margin: 0 auto;
}
.install_close,
.config_close {
	opacity: 0;
	visibility: hidden;
	color: #fff;
	position: absolute;
	top:10px;
	right:10px;
	border:none;
	background: transparent;
	transition: all 0.3s ease-in-out;
}
.install_close {
	opacity: 1;
	visibility: visible;
	color: var(--default_blue);
	top: 5px;
	right: 5px;
}
.install_close svg {
	width: 16px!important;
	height: 16px!important;
}


.config_cta svg {
    margin: 0px 15px 20px 0;
    width: 25px;
    height: 25px;
    position: relative;
}
.content.lang-selected.config .config_content{
	display: flex;
    max-width: 100%;
    max-height: 100%;
}
.content.lang-selected.config .config_content .config_close {
	opacity: 1;
	visibility: visible;
}

.game-logo-top {
	position:absolute;
	top: 0;
	left: 0;
	width: 80px;
	height: 80px;
	border-bottom-right-radius: 80px;
	background: var( --default_orange );
	border: none;
}
.game-logo-top svg {
    width: 70px !important;
    height: 22px !important;
    margin-top: 20px;
}

.gap-\[5px\]{
	gap:5px;
}
.gap-\[9px\]{
	gap:9px;
}
.gap-\[16px\]{
	gap:16px;
}
.gap-\[18px\]{
	gap:18px;
}
.gap-\[26px\]{
	gap:26px;
}

.home {
	width:100vw;
	min-height:100vh;
	overflow-x: hidden;
	overflow-y: auto;
	background: var( --default_color );
}
.intro {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: block;
	background: rgba(0,0,0,0.5);
	backdrop-filter: blur(10px);
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
    align-items: center;
    overflow: hidden;
    top: 0px;
    left: 0px;
}
.logo-top {
	position:absolute;
	top: 0;
	left: 0;
	width: 80px;
	height: 80px;
	border-bottom-right-radius: 80px;
	background: var( --default_orange );
}

.logo-bottom {
	position:absolute;
	bottom: 0;
	right: 0;
	width: 80px;
	height: 80px;
	border-top-left-radius: 80px;
	background: var( --default_red );
	display: flex;
	align-items: flex-end;
    justify-content: flex-end;
    transition: width 0.3s ease-out, height 0.3s ease-out, border-radius 0.3s ease-out;
}
.journey {
	color: white;
	border:none;
	padding:0;
	padding: 10px 20px;
    border-radius: 60px;
    background: var( --default_orange );
	box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
	cursor:pointer;
}
.journey h1, .journey h2,
.journey h3, .journey h4,
.journey h5, .journey h6,
.journey > span {
	font-family: var(--hind-semibold);
	font-size: 1.2em;
	line-height: 1.6em;
}

.journey.active h1, .journey.active h2,
.journey.active h3, .journey.active h4,
.journey.active h5, .journey.active h6,
.journey.active > span {
	display: none!important;
}
.start-title {
	color: var( --default_blue );
}
.start-title {
	font-size: 2em;
    max-width: 115px;
    margin-right: 14px;
}
.start-title h1, 
.start-title h2, 
.start-title h3, 
.start-title h4, 
.start-title h5, 
.start-title h6 {
	font-family: var( --inter-regular );
	font-weight: lighter;
    line-height: 2.5rem;
    letter-spacing: 1px;
    font-size: 1.2em;
}
.start-title span {
	font-family: var( --inter-bold );
}

.lang_choise {
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    border: none;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	border: none;
	background: transparent;
    border:none;
    outline:none;
	font-size: 1.6em;
	line-height: 1.6em;
	font-family: var(--hind-semibold);
    text-transform: uppercase;
    padding-right: 40px;
    background-position: 115px 8px !important;
    background-size: 30px !important;
}
.lang_choise option {
	border: none;
}

.centered-content{
    width: 100%;
    height: auto;
    margin: 0px auto 0;
    gap: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.home .logo-top svg {
    width: 50px;
    height: 50px;
    margin-left: 10px;
    margin-top: 5px;
}
.home .logo-bottom svg {
    width: 70px;
    height: 22px;
    margin-bottom: 15px;
}

.steps-list {
	display: flex;
	gap: 26px;
	flex-wrap: wrap;
	list-style: none;
    position: absolute;
    top: 0;
	width: 100%;
    height: 100%;
    max-width: 450px;
    max-height: 620px;
}
.steps-list .step .number {
	color: rgba(255,255,255,0.7);
}
.steps-list .step.verifyed .number {
	color: rgba(255,255,255,1);
}

.steps-list .step button{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50px;
	width: 50px;
	text-decoration: none;
	background: transparent;
	border: none;
	cursor: pointer ;
}
.steps-list .step {
	position: absolute;
	border-radius: 5%;
    border-radius: 10%;
	background: var( --default_orange );
	animation: scale 0.7s infinite;
	animation-name: scale;
	box-shadow: 0px 2px 2px rgba( 0, 0, 0, 0.3 );
}
.steps-list .step.verifyed{
	animation: none!important;
}

.steps-list .step.first_step {
	top: 0px;
	left: 0px;
}

.steps-list .step .check{
    position: absolute;
    top: -10px;
    right: -10px;
}
.steps-list .step .check > svg {
	display: none;
}
.steps-list .step.verifyed .check > svg {
	display: block;
}
.steps-list .step.step-1 {
	top: 0%;
    left: 32%;
}
.steps-list .step.step-1 button{
    width: 70px;
    height: 70px;
}

.steps-list .step.step-2 {
    top: 0%;
    left: 60%;
}
.steps-list .step.step-2 button{
    width: 60px;
    height: 60px;
}

.steps-list .step.step-3 {
	top: 10%;
    left: 83%;
}
.steps-list .step.step-3 button{
    width: 60px;
    height: 60px;
}

.steps-list .step.step-4 {
    top: 27%;
    left: 86%;
}
.steps-list .step.step-4 button{
    width: 60px;
    height: 60px;
}

.steps-list .step.step-5 {
    top: 31%;
    left: 57%;
}
.steps-list .step.step-5 button{
    width: 80px;
    height: 80px;
}

.steps-list .step.step-6 {
    top: 27%;
    left: 27%;
}
.steps-list .step.step-6 button{
    width: 80px;
    height: 80px;
}

.steps-list .step.step-7 {
    top: 28%;
    left: 0%;
}
.steps-list .step.step-7 button{
    width: 70px;
    height: 70px;
}

.steps-list .step.step-8 {
    top: 50%;
    left: -2%;
}
.steps-list .step.step-8 button{
    width: 80px;
    height: 80px;
}

.steps-list .step.step-9 {
    top: 53%;
    left: 29%;
}
.steps-list .step.step-9 button{
    width: 70px;
    height: 70px;
}

.steps-list .step.step-10 {
    top: 54%;
    left: 56%;
}
.steps-list .step.step-10 button{
    width: 50px;
    height: 50px;
}

.steps-list .step.step-11 {
	top: 52%;
    left: 77%;
}
.steps-list .step.step-11 button{
    height: 60px;
    width: 60px;
}

.steps-list .step.step-12 {
    top: 69%;
    left: 83%;
}
.steps-list .step.step-12 button{
    height: 70px;
    width: 70px;
}

.steps-list .step.step-13 {
    top: 76%;
    left: 62%;
}
.steps-list .step.step-13 button{
    width: 50px;
    height: 50px;
}

.steps-list .step.step-14 {
    top: 74%;
    left: 35%;
}
.steps-list .step.step-14 button{
    height: 70px;
    width: 70px;
}

.steps-list .step.step-15 {
    top: 77%;
    left: 53%;
}
.steps-list .step.step-15 button{
    width: 70px;
    height: 70px;
}

.steps-list .step.step-16 {
    top: 77%;
    left: 53%;
}
.steps-list .step.step-16 button{
    width: 70px;
    height: 70px;
}

.steps-list .step.step-17 {
    top: 77%;
    left: 53%;
}
.steps-list .step.step-17 button{
    width: 70px;
    height: 70px;
}

.steps-list .step.step-18 {
    top: 77%;
    left: 53%;
}
.steps-list .step.step-18 button{
    width: 70px;
    height: 70px;
}

.steps-list .step.step-19 {
    top: 77%;
    left: 53%;
}
.steps-list .step.step-19 button{
    width: 70px;
    height: 70px;
}

.steps-list .step.first_step button{
    width: 80px;
    height: 80px;
}

.steps-list .step.last_step {
    top: 87%;
    left: 1%;
    max-height: 80px;
    min-height: 80px;
}
.steps-list .step.last_step button{
    width: 80px;
    height: 80px;
}

.steps-list .step.last_step button svg{
	width: 50px;
	height: 50px;
}


.steps-list .step.first_step,
.steps-list .step.last_step{
	background: var(--default_blue);
}
.steps-list .step.last_step{

}

.content-step {
	display: flex;
	flex-direction: column;
}

.language-select {
    display: block;
    position: relative;
    min-height: 100vh;
    width: 100%;
    top: 0px;
    left: 0px;
    overflow: hidden;
}
.language-content {
	display: none;
	position: relative;
    max-width: calc(100vw - 40px);
    width: 100%;
	margin: 60px auto;
    left: 0;
    right: 0;
}

.content.started .language-content .path {
	width:100%;
	height: auto;
	max-width: 450px;
}
.content.started .language-content{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.content.started .language-select{
	display: none;
}

.content.lang-selected .intro{
	display: none;
}

.content-step.show{
	display: block;
}

.conteudo {
	position: fixed;
	width: 100%;
	height: 100%;
	top:0;
	left: 0;
	z-index: 3;
}

.conteudo .mask{
	position: fixed;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	top:0;
	left: 0;
	z-index: 4;
}

.conteudo .conteudo-inner {
	position: fixed;
	background: white;
	top:0;
	left: 0;
	z-index: 5;
	right:0;
	bottom:0;
	margin: auto;
	max-width: 800px;
    height: calc(100vh - 90px);
	display: flex;
    margin: auto;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 20px;
}
.conteudo-inner-area-scroll {
    height: calc(100% - 27px);
    width: 100%;
    position: relative;
    top: 22px;
    display: flex;
    flex-direction: column;
    padding-bottom: 27px;
}
.title-modal {
	padding-left: 87px;
	height: 50px;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: end;
}
.conteudo-inner-area-scroll .title-modal h1,
.conteudo-inner-area-scroll .title-modal h2,
.conteudo-inner-area-scroll .title-modal h3,
.conteudo-inner-area-scroll .title-modal h4,
.conteudo-inner-area-scroll .title-modal h5,
.conteudo-inner-area-scroll .title-modal h6 {
	color: var( --default_red );
	text-transform: uppercase;
	font-family: var( --hind-bold );
	font-size: 1.5rem;
}

.home_cta {
	position: fixed;
    bottom: 20px;
	width: 25px;
	height: 25px;
	margin: 0 auto;
	left: 0px;
	right: 0px;
	display: block;
}
.home svg {
	width: 25px;
	height: 25px;
}

.grafism-machine-footer {
	position: relative;
	bottom: 0;
	left: 0;
	overflow: hidden;
}

.grafism-machine-footer .backdrop {
    background: var(--default_blue);
    width: 100%;
    height: 100%;
    max-width: 80px;
    display: flex;
    flex-direction: column;
    position: absolute;
    margin: 0;
    left: 89px;
    right: 0;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    top: 40px;
    max-width: 53px;
    border-radius: 30px;
    max-height: 178px;
}

.grafism-machine-footer .backdrop:after,
.grafism-machine-footer .backdrop:before {
	display: block;
    content: "";
    width: 80px;
    height: 45px;
    background: var(--default_color);
    position: absolute;
}
.grafism-machine-footer .backdrop:before {
    top: 0px;	
}
.grafism-machine-footer .backdrop:after {
	bottom:0px;
}

.grafism-machine-footer .backdrop .bullet {
	width: 30px;
	height: 30px;
	background: var( --default_orange );
	border-radius: 30px;
}

.grafism-machine-footer img {
	position: relative;
	display: block;
}


.shining-buttons {
	display: flex;
	position: absolute;
    top: 118px;
    left: 120px;
    height: 4px;
    width: 23px;
    gap: 4px;
}
.shining-buttons .button{
    width: 5px;
    height: 5px;
    border-radius: 5px;
}

.shining-buttons .button.green {
	background: #65a165;
	animation: blink 0.5s infinite;
	animation-name: blink-green;
}

.shining-buttons .button.yellow {
	background: #f3c119;
	animation: blink 0.15s infinite;
	animation-name: blink-yellow;
}

.shining-buttons .button.red {
	background: #df4949;
	animation: blink 0.7s infinite;
	animation-name: blink-red;
}
.machine-top {
    position: relative;
    display: flex;
    justify-content: center;
    max-width: 345px;
    margin: 0 auto;
}
.machine-top svg {
    max-width: 250px;
    height: auto;
    width: 100%;
    margin: -2px 0 0 95px;
}
.arm {
	position: absolute;
	top: 179px;
    left: -5px;
}
.arm .the-arm {
	width: 12px;
    height: 22px;
    margin: 2px 0 0 100px;
    background-repeat: repeat-y;
    background-size: contain;
    transition: height 0.4s ease-in-out;
    animation: arm-stretch 1s 1s forwards;
}
.title {

}
.title svg {
	position: absolute;
    bottom: 0px;
    left: 0px;
    max-width: 150px;
    animation: title-down 1s 1s forwards;
}

.engrenagem-group {

}
.group-1{
	position: absolute;
	right:0;
}
.group-2{
	position: absolute;
	left:0;
}
.engrenagens svg {
	position: absolute;
	width: 60px;
	margin:0!important;
}
.engrenagem-1 {
	width: auto;
	margin:50px 0 0 150px;
}
.engrenagem-1 svg{
	animation: anim-rotate-left 0.3s infinite linear;
}
.engrenagem-2 {
	margin:-35px 0 0 105px;
}
.engrenagem-2 svg{
	animation: anim-rotate-right 0.3s infinite linear;
}
.engrenagem-3 {
	margin:0px 0px 0 -55px;
}
.engrenagem-3 svg{
	animation: anim-rotate-right 0.3s infinite linear;
}
.engrenagem-4 {
	margin:10px 60px 0 0;
}
.engrenagem-4 svg{
	animation: anim-rotate-left-alt 0.3s infinite linear;
}
.engrenagem-5 {
	margin:65px 30px 0 0;
}
.engrenagem-5 svg{
	animation: anim-rotate-right 0.3s infinite linear;
}


.claw svg {
    position: absolute;
    width: 22px;
    height: 22px;
}

.maquine_bottom {
	position: relative;
	display: block;
}
.maquine_bottom svg {
	width: 160px;
	height: 199px;

}
.manometro {

}
.manometro svg {
    position: absolute;
    width: 22px;
    height: 22px;
	top: 40px;
    left: 63px;
    fill: var( --default_color );
    animation: anim-rotate 0.3s infinite linear;
}
.valvula {

}
.valvula svg {
    position: absolute;
    width: 28px;
    height: 28px;
	top: 97px;
    left: 87px;
    fill: var( --default_color );
    animation: anim-rotate-ease 2s infinite linear;
}

.anim-topdown {
	animation: anim-topdown 1s infinite linear;
}



.install-app {
	display: none;
	position: fixed;
	background: rgba( 0,0,0,0.8 );
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	backdrop-filter: blur(10px);
	justify-content: center;
	align-items: center;
	z-index: 30;
}


.install-app .btn-content {
	max-width: 320px;
    max-height: 130px;
	background: #fff;
	border-radius: 8px;
	margin: 0 auto;
	padding: 16px;
	width: 100%;
	height: 100%;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: space-between;
    position: fixed;
}

.install-app .btn-content .close {

}
.install-app .btn-content p {
	font-size: 1.6rem;
}

.btn-install {
	margin-top: auto;
	color: #fff;
	background: var(--default_blue);
	cursor: pointer;
	padding: 10px 15px;
	border: none;
	border-radius: 15px;
	margin-top: auto;
}
.ios {
	height: 100%;
	align-items: center;
	justify-self: center;
}
.android {
	height: 100%;
	align-items: flex-end;
	flex-direction: column;
}
.xclose-modal {
	position: absolute;
    top: 22px;
    right: 22px;
    background: transparent;
    border: none;
    z-index: 10;
}

.modal_content_scroll {
	width: 100%;
    height: 100%;
	border:1px solid var( --default_red );
	overflow: auto;
	box-sizing: border-box;
    padding: 30px 10px 10px;
}
.modal_content_scroll img {
	width:80%;
	height: auto;
	margin: 20px auto;
	display: block;
}
.content {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}
.content .title-way{
	display: none;
}
.content.lang-selected.started .title-way {
	display: flex;
    justify-content: center;
    align-items: center;
}
.title-way {
	position: relative;
	top: 0px;
	left: 0;
	right: 0;
	margin: 30px auto 0;
}
.title-way svg {
	width: 200px;
	height: 100px;
}
.volume_effects {
	margin-top: 10px;
}
.volume_effects, .turn_off_effects p {
	font-family: var(--inter-bold);
	text-transform: uppercase;
	font-size: 1.2rem;
}

.turn_off_effects {
	display: flex;
    gap: 10px;
    margin: 10px 0;
}
.turn_off_effects.mt {
	margin-top: 20px;
}
.ballon {
	position: absolute;
	left: 0;
	display: flex;
	width: 80px;
	align-items: center;
    justify-content: center;
}
.ballon_image svg {
	width: 80px;
	height: 80px;
}
.number {
	color: rgba( 255,255,255, 1 );
	font-family: var(--hind-bold);
	font-size: 4rem;
}

.ballon > .number{
	position: absolute;
    top: 25px;
}

.modal_content_scroll > * {
	font-size: 1.5rem;
}

.video_player {
	margin: 10px 0px 36px;
}
.audio_player {
    width: 100%;
	margin: 10px 0px 36px;
}

.form_auth {
	display: flex;
	flex-direction: column;
	justify-self: center;
	align-items: center;
	max-width: 250px;
	max-height: 150px;
	background: white;
	border-radius: 10px;
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	margin: auto;
	z-index: 10;
	padding: 10px;
	box-sizing: border-box;
}
.form_auth input {
	padding: 5px 10px;
}
.form_auth input {
	padding: 5px 10px;
	margin-bottom: 15px;
	border: 1px solid var(--default_blue);
	border-radius: 3px;
}
.form_auth label {
	font-family: var(--inter-bold);
	font-size: 1.5rem;
	margin-bottom: 16px;
}
.form_auth input.error {
	border-color: red;
}

.form_auth button {
	border:none;
	text-align: center;
	background: var(--default_orange);
	color: var(--default_blue);
	padding: 5px 15px;
	text-transform: uppercase;
	border-radius: 15px;
}

.form_auth p {
	font-family: var(--hind-medium);
	color: red;
	font-size: 1.1rem;
}
.circle-solid,
.circle-dashed {
	position: absolute;
	z-index: 0;
	top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.circle-solid {
    animation: anim-rotate-ease-right 60s infinite linear;
}
.circle-dashed {
    animation: anim-rotate-ease-left 60s infinite linear;
}



.circle-solid svg ,
.circle-dashed svg  {
	width: 80px!important; height: 80px!important;
}

.copy {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    font-family: var(--inter-regular);
    color: var(--default_blue);

    a {
    	color: var(--default_orange);
    }
}

.logo_list {
	max-width: 200px;

	img {
		display: block;
		width: 100%;
	}

}

#progress-container{
	display: none;
	flex-direction: column;
	width: 100%;
	background-color: rgba(0,0,0,0.9);
	position: fixed;
	z-index: 9999999;
	top: 0;
	height: 100%;
	width: 100%;
	align-items: center;
	justify-content: center;
	padding: 30px;
	box-sizing: border-box;
}
#loading-message {
	text-align: center;
	font-size: 16px;
	margin: 20px auto;
	color: #fff;
}
#progress-bg{
	width: 100%;
	height: 20px;
	background: gray;
    align-self: baseline;
    border-radius: 5px;
    overflow: hidden;
}
#progress-bar {
	height: 20px;
	width: 0%;
    background-color: #e08c32;
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    line-height: 12px;
    display: inline-block;
    padding: 3px 0px;
}

@keyframes arm-stretch {
    0% {
        height: 22px;
    }
    50% {
        height: 128px;
    }
    100% {
        height: 22px;
    }
}
@keyframes title-down {
    0% {
        bottom: 0px;
    }
    50% {
        bottom: -130px;
    }
    100% {
        bottom: -60px;
    }
}
@keyframes anim-rotate-left-alt {
  	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(-94deg);
	}
}
@keyframes anim-rotate-left {
  	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(-45deg);
	}
}
@keyframes anim-rotate-right {
  	0%{
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(90deg);
	}
}
@keyframes anim-rotate {
  	0%, 100% {
		transform: rotate(-30deg);
	}
	50% {
		transform: rotate(30deg);
	}
}
@keyframes anim-rotate-ease {
  	0%, 100% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(360deg);
	}
}
@keyframes anim-rotate-ease-left {
  	0%{
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(-360deg);
	}
}
@keyframes anim-rotate-ease-right {
  	0%{
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@keyframes anim-topdown {
  from {
    margin-top: 3px;
  }
  to {
    margin-top: 25px;
  }
}

@keyframes blink-green {
	0%, 100% {
		opacity: 1;
		box-shadow: 0 0 0px #65a165;
	}
	50% {
		opacity: 0.7;
		box-shadow: 0 0 6px 4px #65a165;
	}
}

@keyframes blink-yellow {
	0%, 100% {
		opacity: 1;
		box-shadow: 0 0 0px #f3c119;
	}
	50% {
		opacity: 0.7;
		box-shadow: 0 0 6px 4px #f3c119;
	}
}

@keyframes blink-red {
	0%, 100% {
		opacity: 1;
		box-shadow: 0 0 0px #df4949;
	}
	50% {
		opacity: 0.8;
		box-shadow: 0 0 6px 4px #df4949;
	}
}


@keyframes scale {
	0%, 100% {
		transform: scale(1.2, 1.2);
	}
	50% {
		transform: scale(1, 1);
	}
}

@media (max-width: 600px){
	.conteudo .conteudo-inner {
		margin: auto 10px;
	}
}

.loader {
  width: 54px;
  height: 54px;
  position: relative;
  border-radius: 4px;
  background-color: #fff;
  background-image:
    radial-gradient(circle 5px , #FF3D00 100%, transparent 0),
    radial-gradient(circle 5px , #FF3D00 100%, transparent 0),
    radial-gradient(circle 5px , #FF3D00 100%, transparent 0),
    radial-gradient(circle 5px , #FF3D00 100%, transparent 0),
    radial-gradient(circle 5px , #FF3D00 100%, transparent 0),
    radial-gradient(circle 5px , #FF3D00 100%, transparent 0);
    background-repeat: no-repeat;
  animation: move 4s linear infinite , rotate 2s linear infinite;
}

@keyframes rotate {
  0% , 20%{ transform: rotate(0deg)}
  30% , 40% { transform: rotate(90deg)}
  50% , 60% { transform: rotate(180deg)}
  70% , 80% { transform: rotate(270deg)}
  90%,  100% { transform: rotate(360deg)}
}
@keyframes move {
  0% ,  9%{
      background-position:
      -12px -15px,  -12px 0px, -12px 15px,
      12px -15px,  12px 0px,  12px 15px;
  }
  10% , 25%{
      background-position:
      0px -15px,  -12px 0px, -12px 15px,
      34px -15px,  12px 0px,  12px 15px;
  }
  30% , 45%{
      background-position:
      0px -34px, -12px -10px, -12px 12px,
      34px -15px, 12px -10px, 12px 12px;
  }
  50% , 65% {
      background-position:
      0px -34px, -12px -34px, -12px 12px,
      34px -12px, 0px -10px, 12px 12px;
  }
  70% , 85% {
      background-position:
      0px -34px, -12px -34px, 0px 12px,
      34px -12px, 0px -10px, 34px 12px;
  }
 90% , 100% {
      background-position:
      0px -34px, -12px -34px, 0px 0px,
      34px -12px, 0px 0px, 34px 12px;
  }
}
