/* COR PRINCIPAL */
/* COR PADRÕES */
/* COR PADRÕES */
* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
input,
textarea,
select,
button {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 1rem;
  vertical-align: baseline;
  box-sizing: border-box;
  word-wrap: break-word;
  text-shadow: none;
  font-weight: normal;
}
input,
textarea,
select,
button {
  cursor: pointer;
  background: none;
  font-size: 100%;
  font-family: inherit;
  resize: none;
  border-radius: 0;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input:focus,
textarea:focus,
select:focus,
button:focus {
  outline: none;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}
html {
  font-size: 62.5%;
}
body {
  line-height: 1;
  overflow-x: hidden;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
a,
a:link,
a:visited,
a:hover,
a:active {
  outline: none;
  text-decoration: none;
  color: inherit;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
i {
  font-style: normal;
}
input[type='number'] {
  -moz-appearance: textfield;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}
[contenteditable]:focus {
  outline: 0px solid transparent;
}
#bloco_fw_pagina {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  background-color: rgba(0,0,0,0.7);
  opacity: 0;
  display: none;
  z-index: 10000;
  transition: opacity 0.3s ease-out;
}
#bloco_fw_pagina.fw_pagina_animacao {
  opacity: 1;
}
#bloco_fw_pagina::after {
  content: " ";
  width: 0;
  height: 4px;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  animation: fw_pagina_carregando 3s ease-in-out infinite;
  display: none;
}
#bloco_fw_pagina.fw_pagina_carregando::after {
  display: block;
}
#bloco_fw_pagina .fw_pagina_conteudo {
  width: 100%;
  position: absolute;
  top: -300px;
  opacity: 0;
  transition: opacity 0.3s ease-out, top 0.3s ease-out;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#bloco_fw_pagina.fw_pagina_animacao_conteudo .fw_pagina_conteudo {
  top: 0;
  opacity: 1;
}
.fw_pagina_body {
  overflow: hidden !important;
}
.fw_form_hide {
  display: none !important;
}
body.fw_body_hidden {
  overflow: hidden !important;
}
.form_geral .hide {
  display: none !important;
}
.form_geral .form_input_hidden {
  width: 0;
  height: 0;
  position: absolute;
  top: -10000px;
  left: -10000px;
  opacity: 0;
}
.form_geral .bloco_input_footer {
  width: 100%;
  height: 15px;
  position: absolute;
  bottom: -7px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  overflow: hidden;
}
.form_geral .bloco_input_footer .input_mensagem {
  height: 15px;
  line-height: 15px;
  flex-grow: 1;
  position: absolute;
  display: flex;
  left: 10px;
  bottom: 0;
  font-size: 1.1rem;
  color: #ff6c60;
  padding: 0 5px;
  opacity: 0;
  background: #fff;
  transition: top 0.3s ease-out, opacity 0.3s ease-out;
  overflow: hidden;
}
.form_geral .bloco_input_footer .input_mensagem.ativo {
  opacity: 1;
}
.form_geral .bloco_input_footer .bloco_input_contador {
  height: 15px;
  line-height: 15px;
  position: absolute;
  background-color: #fff;
  padding: 0 5px;
  display: flex;
  flex-direction: row;
  color: #999;
  top: 0;
  right: 10px;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
.form_geral .bloco_input_footer .bloco_input_contador.ativo {
  opacity: 1;
}
.form_geral .bloco_input_footer .bloco_input_contador .bloco_input_contador_numero,
.form_geral .bloco_input_footer .bloco_input_contador .bloco_input_contador_barra {
  font-size: 1.1rem;
}
/* INPUT, SELECT TEXTAREA */
.form_geral .bloco_input {
  width: 100%;
  position: relative;
  margin: 20px 0 10px 0;
}
.form_geral .bloco_input .input_bloqueado {
  width: 100%;
  height: 45px;
  position: absolute;
  top: 10px;
  left: 0;
  z-index: 10;
  border-radius: 3px;
  background-color: rgba(255,255,255,0.314);
  cursor: no-drop;
}
.form_geral .bloco_input .input_icone {
  width: 45px;
  height: 45px;
  line-height: 45px;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 3px 0 0 3px;
  z-index: 2;
}
.form_geral .bloco_input .input_http {
  height: 45px;
  line-height: 46px;
  position: absolute;
  top: 0;
  left: 15px;
  font-size: 1.4rem;
  color: #999;
  display: none;
}
.form_geral .bloco_input input,
.form_geral .bloco_input textarea {
  width: 100%;
  height: 45px;
  position: relative;
  padding: 0 15px;
  font-size: 1.4rem;
  overflow: hidden;
  z-index: 2;
}
.form_geral .input_select input {
  padding-right: 35px;
}
.form_geral .input_textarea textarea {
  height: 25px;
  line-height: 25px;
  padding: 0 12px;
  margin: 12.5px 0;
}
.form_geral .bloco_input input::placeholder {
  color: #999;
}
.form_geral .bloco_input .borda {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #ddd;
  z-index: 0;
  border-radius: 3px;
}
.form_geral .input_textarea .borda {
  height: calc(100% - 2px);
}
.form_geral .bloco_input input:focus ~ .borda,
.form_geral .bloco_input textarea:focus ~ .borda {
  border-color: #169e91;
  border-width: 2px;
}
.form_geral .input_select {
  background: url("/images/plugins/form/select.svg") no-repeat;
  background-position: calc(100% - 15px) center;
  background-size: 10px auto;
}
.form_geral .bloco_input label {
  height: 20px;
  line-height: 21px;
  padding: 0 5px;
  position: absolute;
  left: 10px;
  top: 2px;
  background-color: #fff;
  color: #169e91;
  font-size: 1.2rem;
  transition: top 0.2s ease-out, opacity 0.2s ease-out;
  opacity: 0;
  z-index: 2;
}
.form_geral .bloco_input .input_geral.input_obrigatorio ~ label:after {
  position: absolute;
  top: 0;
  content: "*";
  padding: 0 5px 0 3px;
  background: #fff;
}
.form_geral .bloco_input .input_geral:not(:placeholder-shown) ~ label {
  top: -10px;
  opacity: 1;
}
.form_geral .bloco_input .input_geral:not(:placeholder-shown) ~ .input_http {
  display: flex;
}
.form_geral .bloco_input .input_geral.input_url:not(:placeholder-shown) {
  padding-left: 65px;
}
.form_geral .bloco_input .input_geral.input_url:not(:placeholder-shown):focus {
  padding-left: 64px;
}
.form_geral .bloco_input .input_icone_erro {
  display: none;
}
.form_geral .bloco_input .input_geral.input_obrigatorio ~ .input_icone_erro {
  width: 25px;
  height: 25px;
  line-height: 30px;
  position: absolute;
  top: 10px;
  display: block;
  text-align: center;
  z-index: 9;
}
.form_geral .bloco_input .input_geral.input_obrigatorio ~ .input_icone_erro:after {
  font-size: 1.4rem;
  color: #ff6c60;
  content: "*";
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
.form_geral .bloco_input .input_geral.input_obrigatorio:placeholder-shown ~ .input_icone_erro {
  right: 7px;
}
.form_geral .bloco_input .input_geral.input_obrigatorio:placeholder-shown ~ .input_icone_erro:after {
  opacity: 1;
}
.form_geral .bloco_input .input_geral.input_obrigatorio:not(:placeholder-shown) ~ .input_icone_erro {
  display: none;
}
.form_geral .input_select .input_geral.input_obrigatorio:placeholder-shown ~ .input_icone_erro {
  right: 35px;
}
.form_geral .bloco_input.input_quantidade_erro .input_geral,
.form_geral .bloco_input .input_geral.input_erro,
.form_geral .bloco_input .input_geral.input_obrigatorio.input_obrigatorio_ativo:placeholder-shown {
  border-color: #ff6c60;
}
.form_geral .bloco_input .input_ajuda {
  width: 25px;
  height: 25px;
  line-height: 25px;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.4rem;
  text-align: center;
  background-color: #169e91;
  color: #fff;
  border-radius: 50%;
  cursor: default;
  z-index: 20;
}
.form_geral .bloco_input.bloco_ajuda .input_icone_erro {
  right: 38px !important;
}
.form_geral .input_input.bloco_senha input,
.form_geral .input_input.bloco_ajuda input {
  padding-right: 50px;
}
.form_geral .bloco_input.bloco_ajuda.bloco_senha .input_ajuda {
  right: 38px;
}
.form_geral .bloco_input.bloco_ajuda.bloco_senha input {
  padding-right: 75px;
}
.form_geral .bloco_input.bloco_senha .botao_olho {
  width: 30px;
  height: 100%;
  position: absolute;
  right: 5px;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form_geral .bloco_input.bloco_senha .botao_olho .icone_olho {
  width: 25px;
  height: 25px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.form_geral .bloco_input.bloco_senha .botao_olho .icone_olho svg {
  width: 25px;
  height: 25px;
  margin: 3px 0 0 4px;
  fill: #666;
}
.form_geral .bloco_input.bloco_senha .botao_olho .icone_olho.olho_aberto {
  display: flex;
}
.form_geral .bloco_input.bloco_senha.mostrar_senha .botao_olho .icone_olho.olho_fechado {
  display: flex;
}
.form_geral .bloco_input.bloco_senha.mostrar_senha .botao_olho .icone_olho.olho_aberto {
  display: none;
}
.form_geral .bloco_input.bloco_senha .input_icone_erro {
  padding-right: 38px !important;
}
.form_geral .input_select ul {
  display: none;
}
.form_geral .bloco_input.bloco_input_icone .input_icone {
  display: flex;
}
.form_geral .bloco_input.bloco_input_icone input,
.form_geral .bloco_input.bloco_input_icone textarea {
  padding-left: 40px;
}
.form_geral .bloco_input.bloco_input_icone input:focus {
  padding-left: 39px;
}
.form_geral .bloco_input.bloco_input_icone .input_http {
  left: 45px;
}
.form_geral .bloco_input.bloco_input_icone input.input_url:not(:placeholder-shown) {
  padding-left: 95px;
}
.form_geral .bloco_input.bloco_input_icone input.input_url:not(:placeholder-shown):focus {
  padding-left: 94px;
}
.form_geral .bloco_input.bloco_input_icone_cor label {
  left: 50px;
}
.form_geral .bloco_input.bloco_input_icone_cor input,
.form_geral .bloco_input.bloco_input_icone_cor textarea {
  padding-left: 56px;
}
.form_geral .bloco_input.bloco_input_icone_cor input:focus {
  padding-left: 55px;
}
.form_geral .bloco_input.bloco_input_icone_cor .input_http {
  left: 57px;
}
.form_geral .bloco_input.bloco_input_icone_cor input.input_url:not(:placeholder-shown) {
  padding-left: 106px;
}
.form_geral .bloco_input.bloco_input_icone_cor input.input_url:not(:placeholder-shown):focus {
  padding-left: 105px;
}
.form_geral .bloco_input.bloco_separador {
  flex-direction: row;
  display: flex;
  align-items: center;
}
.form_geral .bloco_input.bloco_separador .input_separador_1 {
  padding-right: 10px;
  border-radius: 3px 0 0 3px;
  border-right: #e5e5e5;
}
.form_geral .bloco_input.bloco_separador .input_separador_2 {
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form_geral .bloco_input.bloco_separador .input_separador_2 p {
  min-width: 10px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 100;
  color: #999;
}
.form_geral .bloco_input.bloco_separador .input_separador_3 {
  border-radius: 0 3px 3px 0;
  border-left: none;
}
.form_geral .bloco_input.bloco_separador.input_quantidade_erro .input_separador_1,
.form_geral .bloco_input.bloco_separador.input_quantidade_erro .input_separador_3 {
  border-color: #ff6c60;
}
.form_geral .bloco_input.bloco_separador.input_quantidade_erro .input_separador_2 {
  border-top-color: #ff6c60;
  border-bottom-color: #ff6c60;
}
.form_geral .bloco_input.bloco_separador.bloco_ajuda .input_separador_1 {
  padding-right: 15px;
}
.form_geral .bloco_input.bloco_separador.bloco_ajuda .input_separador_3 {
  padding-right: 40px;
}
.form_geral .form_bloco .bloco_input_select {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}
.form_geral .form_bloco .bloco_input_select .input_conteudo {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
}
.form_geral .form_bloco .bloco_input_select .input_conteudo::after {
  content: "";
  width: calc(100% - 2px);
  height: 43px;
  position: absolute;
  top: 20px;
  left: 0;
  border: 1px solid #ddd;
  border-radius: 3px;
  z-index: 1;
}
.form_geral .form_bloco .bloco_input_select .input_conteudo .input_select_linha {
  width: 1px;
  height: 43px;
  background-color: #ddd;
  margin-top: 21px;
}
.form_geral .form_bloco .bloco_input_select .input_conteudo .bloco_input {
  width: 50%;
  z-index: 2;
}
.form_geral .form_bloco .bloco_input_select .input_conteudo .input_input input {
  border: none;
  border-radius: 0;
  padding-left: 15px;
}
.form_geral .form_bloco .bloco_input_select .input_conteudo .input_select .input_select_texto {
  border: none;
  border-radius: 0;
  padding-left: 15px;
}
.form_geral .form_bloco .bloco_input_select.input_focus .input_conteudo::after {
  width: calc(100% - 4px);
  height: 41px;
  border: 2px solid #169e91;
}
.form_geral .form_bloco .bloco_input_select.input_focus .input_conteudo .input_select_linha {
  width: 2px;
  background-color: #169e91;
}
.form_geral .form_bloco .bloco_input_select.input_focus .input_conteudo .input_select {
  margin-left: -1px;
}
.form_geral .form_bloco .bloco_input_select.input_quantidade_erro .input_conteudo::after {
  border-color: #ff6c60;
}
.form_geral .form_bloco .bloco_input_select.input_quantidade_erro .input_conteudo .input_select_linha {
  background-color: #ff6c60;
}
#fw_form_select,
#bloco_geral_autocomplete {
  position: absolute;
  display: none;
  z-index: 10001;
}
#fw_form_select .option,
#bloco_geral_autocomplete .option {
  width: 100%;
  max-height: calc(38px * 5);
  position: absolute;
  background-color: #333;
  box-shadow: 0 3px 5px #fff;
  border-radius: 3px;
  z-index: 10;
  overflow-x: hidden;
  overflow-y: auto;
}
#fw_form_select .option.loading_geral::after,
#bloco_geral_autocomplete .option.loading_geral::after {
  width: 100%;
  height: 2px;
  content: " ";
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  animation: form_animacao_barra 2s ease-in-out 0s infinite;
}
#fw_form_select .option li,
#bloco_geral_autocomplete .option li {
  width: 100%;
  height: 38px;
  line-height: 38px;
  padding: 0 10px 0 30px;
  border: none;
  font-size: 1.2rem;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
  overflow: hidden;
  align-items: flex-start;
}
#fw_form_select .option li.hover,
#bloco_geral_autocomplete .option li.hover {
  background-color: #169e91;
}
#fw_form_select .option li.selected,
#bloco_geral_autocomplete .option li.selected {
  background: url("/images/plugins/form/check.svg") no-repeat 9px center;
  background-size: 10px auto;
}
#fw_form_select .option li.selected.hover,
#bloco_geral_autocomplete .option li.selected.hover {
  background-color: #169e91;
}
#fw_form_select .option li.disabled,
#bloco_geral_autocomplete .option li.disabled {
  cursor: no-drop;
}
#fw_form_select .option li.loading,
#bloco_geral_autocomplete .option li.loading {
  height: 80px;
  line-height: 80px;
  cursor: progress;
  text-align: center;
}
#fw_form_select {
  display: block;
}
#bloco_geral_autocomplete .option li {
  color: #ccc;
}
#bloco_geral_autocomplete .option li strong {
  font-weight: bold;
  font-size: 1.2rem;
  color: #fff;
}
#bloco_geral_autocomplete .option li .flex_grow {
  flex-grow: 1;
  flex-basis: 0%;
}
#bloco_geral_autocomplete .option li p {
  font-size: 1.2rem;
}
#bloco_geral_autocomplete .option li i.novo {
  width: 20px;
  height: 20px;
  background-color: rgba(255,255,255,0.314);
  color: #000;
  margin-top: 8px;
  font-size: 1.6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* CHECKBOX */
.form_geral .input_checkbox {
  position: relative;
  display: flex;
  flex-direction: row;
  overflow: hidden;
}
.form_geral .input_checkbox label {
  min-height: 18px;
  font-size: 1.4rem;
  line-height: 1.5em;
  color: #666;
  position: relative;
  padding-left: 25px;
  display: flex;
  align-items: center;
  cursor: pointer;
  word-break: break-word;
}
.form_geral .input_checkbox label * {
  font-size: inherit;
}
.form_geral .input_checkbox label strong {
  margin: 0 5px;
}
.form_geral .input_checkbox label::after {
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0;
  background-image: linear-gradient(to bottom, #ccc, #ddd);
  border-radius: 3px;
  content: " ";
}
.form_geral .input_checkbox label .input_ajuda {
  width: 25px;
  height: 25px;
  line-height: 25px;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  background-color: #169e91;
  color: #fff;
  margin-left: 10px;
  border-radius: 50%;
  cursor: default;
}
.form_geral .input_checkbox input {
  width: 0;
  height: 0;
  opacity: 0;
}
.form_geral .input_checkbox input:checked ~ label::after {
  background: #169e91 url("/images/plugins/form/check.svg") no-repeat center center;
  background-size: 10px auto;
}
/* RADIO */
.form_geral .input_radio {
  position: relative;
  display: flex;
  flex-direction: row;
  overflow: hidden;
}
.form_geral .input_radio label {
  min-height: 18px;
  font-size: 1.3rem;
  color: #666;
  position: relative;
  padding-left: 25px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.form_geral .input_radio label::after {
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0;
  background-image: linear-gradient(to bottom, #ccc, #ddd);
  border-radius: 50%;
  content: " ";
  z-index: 1;
}
.form_geral .input_radio label::before {
  width: 6px;
  height: 6px;
  position: absolute;
  left: 6px;
  background: #fff;
  border-radius: 50%;
  content: " ";
  z-index: 2;
  display: none;
}
.form_geral .input_radio input {
  display: none;
}
.form_geral .input_radio input:checked ~ label::after {
  background: #169e91;
}
.form_geral .input_radio input:checked ~ label::before {
  display: block;
}
/* BOTÃO SWTICH */
.form_geral .bloco_switch {
  margin: 20px 0 10px;
  position: relative;
  display: flex;
  user-select: none;
}
.form_geral .bloco_switch input {
  width: 1px;
  height: 1px;
  position: absolute;
  left: 0;
  top: 10px;
  opacity: 0;
  z-index: 1;
}
.form_geral .bloco_switch label {
  display: flex;
  color: #666;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
  z-index: 2;
}
.form_geral .bloco_switch label .bloco_switch_texto {
  font-size: 1.4rem;
}
.form_geral .bloco_switch label .input_ajuda {
  width: 25px;
  height: 25px;
  line-height: 25px;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  background-color: #169e91;
  color: #fff;
  margin-left: 10px;
  border-radius: 50%;
  cursor: default;
}
.form_geral .bloco_switch label .bloco_switch_bola {
  width: 40px;
  height: 24px;
  position: relative;
  margin-left: 10px;
  background: #ccc;
  border-radius: 12px;
  display: flex;
  transition: background-color 0.3s ease-out;
}
.form_geral .bloco_switch label .bloco_switch_bola::after {
  width: 20px;
  height: 20px;
  content: "";
  position: absolute;
  background: #fff;
  box-shadow: 0 0 5px rgba(0,0,0,0.125);
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: left 0.3s ease-out;
}
.form_geral .bloco_switch input:focus ~ label .bloco_switch_bola {
  background-color: #bbb;
}
.form_geral .bloco_switch input:checked ~ label .bloco_switch_bola {
  background-color: #169e91;
}
.form_geral .bloco_switch input:checked ~ label .bloco_switch_bola::after {
  left: 18px;
}
.form_geral .input_cor {
  height: 65px;
  position: relative;
  margin-top: 10px;
  display: flex;
  align-items: center;
}
.form_geral .input_cor .input_cor_conteudo {
  height: 45px;
  position: relative;
  display: flex;
  flex-direction: row;
  border-radius: 3px;
  border: 1px solid #ddd;
  cursor: pointer;
  overflow: hidden;
}
.form_geral .input_cor .input_cor_conteudo * {
  cursor: pointer;
}
.form_geral .input_cor .input_cor_conteudo label {
  height: 45px;
  line-height: 44px;
  font-size: 1.4rem;
  font-weight: 300;
  color: #999;
  margin: 0 15px;
}
.form_geral .input_cor .input_cor_conteudo .input_cor_bg {
  width: 50px;
  height: 45px;
  z-index: 2;
}
.form_geral .input_cor .input_cor_conteudo .input_cor_icone {
  position: absolute;
  width: 50px;
  height: 45px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  fill: #ccc;
  z-index: 1;
}
.form_geral.form_esqueleto .bloco_input {
  overflow: hidden;
}
.form_geral.form_esqueleto .bloco_input::after {
  width: 100%;
  height: 45px;
  position: absolute;
  top: 10px;
  left: 0;
  z-index: 10;
  content: " ";
  background-color: #eee;
  border-radius: 3px;
}
.form_geral.form_esqueleto .bloco_input::before {
  width: 40px;
  height: 45px;
  content: " ";
  position: absolute;
  top: 10px;
  left: -20px;
  z-index: 11;
  animation: form_esqueleto_loading 2s ease-in-out 0s infinite;
  background-image: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.6), rgba(255,255,255,0));
}
.form_geral.form_esqueleto .bloco_input label {
  display: none;
}
/* ANIMAÇÃO */
.form_geral .form_botao {
  width: 100%;
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.form_geral .form_botao a,
.form_geral .form_botao button {
  height: 45px;
  line-height: 45px;
  padding: 0 20px;
  border-radius: 3px;
  font-size: 1.3rem;
  text-transform: uppercase;
}
.form_geral .form_botao a {
  background-color: #ccc;
  color: #666;
}
.form_geral .form_botao button {
  color: #fff;
  background-color: #169e91;
}
.form_geral .input_margin {
  width: 20px;
  height: 1px;
}
.form_geral .form_bloco {
  margin-top: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.form_geral .form_bloco header {
  width: 100%;
  margin-bottom: 20px;
}
.form_geral .form_bloco header h1 {
  width: 100%;
  font-size: 1.8rem;
  color: #169e91;
}
.form_geral .form_bloco header p {
  width: 100%;
  font-size: 1.3rem;
  color: #666;
  margin-top: 5px;
}
.form_geral .form_bloco header.centralizar h1,
.form_geral .form_bloco header.centralizar p {
  text-align: center;
}
.form_geral .form_bloco h2 {
  margin-top: 20px;
  font-size: 1.3rem;
  color: #666;
}
.form_geral .form_bloco .row {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.form_geral .form_bloco .row .row {
  width: calc(50% - 10px);
}
.form_geral .form_bloco .row .resto {
  flex-grow: 1;
  flex-basis: 0%;
}
.form_geral .form_bloco .row .bloco_input,
.form_geral .form_bloco .row .bloco_input_select {
  width: calc(50% - 10px);
}
.form_geral .form_bloco .form_linha {
  width: 100%;
  height: 1px;
  background-color: #eee;
  margin: 20px 0 10px 0;
}
.form_geral .row2,
.form_geral .row3,
.form_geral .row4 {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.form_geral .row2 .bloco_input,
.form_geral .row2 .bloco_input_select {
  width: calc(50% - 10px);
}
.form_geral .row3 .bloco_input,
.form_geral .row3 .bloco_input_select {
  width: calc((100% / 3) - 10px);
}
.form_geral .row4 .bloco_input,
.form_geral .row4 .bloco_input_select {
  width: calc(25% - 10px);
}
.form_geral .row_livre {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
#fw_form_cor {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.7);
  opacity: 0;
  transition: opacity 0.3s ease-out;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#fw_form_cor.fw_form_cor_abrir {
  opacity: 1;
}
#fw_form_cor .fw_form_cor_display_none {
  display: none !important;
}
#fw_form_cor .fw_form_cor_conteudo {
  width: calc(100% - 40px);
  max-width: 460px;
  background-color: #fff;
  box-shadow: 0 4px 5px #000;
  overflow: hidden;
  border-radius: 5px;
}
#fw_form_cor .fw_form_cor_header {
  width: 100%;
  height: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  box-shadow: 0 4px 5px rgba(0,0,0,0.1);
}
#fw_form_cor .fw_form_cor_header .fw_form_cor_h1 {
  flex-grow: 1;
  flex-basis: 0%;
  font-size: 1.6rem;
  color: #666;
  padding-left: 20px;
}
#fw_form_cor .fw_form_cor_header .fw_form_cor_fechar {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  fill: #666;
  margin: 0 10px;
}
#fw_form_cor .fw_form_cor_header .fw_form_cor_fechar.fw_form_cor_fechar_mobile {
  display: none;
}
#fw_form_cor .fw_form_cor_scroll {
  max-height: calc(100vh - 90px);
  overflow-y: auto;
  padding-top: 10px;
}
#fw_form_cor .fw_form_cor_h2 {
  font-size: 1.4rem;
  padding: 10px 20px;
}
#fw_form_cor .fw_form_cor_ul {
  width: 100%;
  padding: 0 20px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li {
  width: 40px;
  height: 40px;
  background-color: attr(data-cor);
  margin: 1px;
  cursor: pointer;
  border: 1px solid #ccc;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(1) {
  background-color: #000;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(2) {
  background-color: #696969;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(3) {
  background-color: #dcdcdc;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(4) {
  background-color: #6a5acd;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(5) {
  background-color: #483d8b;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(6) {
  background-color: #000080;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(7) {
  background-color: #00f;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(8) {
  background-color: #6495ed;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(9) {
  background-color: #00bfff;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(10) {
  background-color: #87cefa;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(11) {
  background-color: #add8e6;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(12) {
  background-color: #0ff;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(13) {
  background-color: #00ced1;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(14) {
  background-color: #40e0d0;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(15) {
  background-color: #20b2aa;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(16) {
  background-color: #008b8b;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(17) {
  background-color: #7fffd4;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(18) {
  background-color: #00fa9a;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(19) {
  background-color: #7cfc00;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(20) {
  background-color: #9acd32;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(21) {
  background-color: #008000;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(22) {
  background-color: #daa520;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(23) {
  background-color: #8b4513;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(24) {
  background-color: #a0522d;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(25) {
  background-color: #bc8f8f;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(26) {
  background-color: #f4a460;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(27) {
  background-color: #7b68ee;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(28) {
  background-color: #8a2be2;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(29) {
  background-color: #4b0082;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(30) {
  background-color: #a020f0;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(31) {
  background-color: #f0f;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(32) {
  background-color: #ee82ee;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(33) {
  background-color: #ff1493;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(34) {
  background-color: #ff69b4;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(35) {
  background-color: #db7093;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(36) {
  background-color: #ffb6c1;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(37) {
  background-color: #f08080;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(38) {
  background-color: #dc143c;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(39) {
  background-color: #800000;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(40) {
  background-color: #b22222;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(41) {
  background-color: #ff6347;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(42) {
  background-color: #f00;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(43) {
  background-color: #ff8c00;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(44) {
  background-color: #ffd700;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(45) {
  background-color: #ff0;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(46) {
  background-color: #f0e68c;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(47) {
  background-color: #b0e0e6;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(48) {
  background-color: #e0ffff;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(49) {
  background-color: #f0fff0;
}
#fw_form_cor .fw_form_cor_ul .fw_form_cor_li:nth-child(50) {
  background-color: #fff;
}
#fw_form_cor .fw_form_cor_bloco_input {
  width: 100%;
  position: relative;
  padding: 0 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  overflow: hidden;
}
#fw_form_cor .fw_form_cor_bloco_input .fw_form_cor_hashtag {
  width: 30px;
  height: 40px;
  line-height: 40px;
  position: absolute;
  text-align: center;
  font-size: 1.4rem;
  color: #666;
  top: 0;
  left: 20px;
  height: 40px;
  line-height: 40px;
  z-index: 2;
  transition: left 0.3s ease-out;
}
#fw_form_cor .fw_form_cor_bloco_input .fw_form_cor_input {
  width: 100px;
  height: 40px;
  padding-left: 30px;
  border-radius: 3px 0 0 3px;
  border: 1px solid #ccc;
  border-right: none;
  font-size: 1.4rem;
  transition: padding-left 0.3s ease-out;
}
#fw_form_cor .fw_form_cor_bloco_input .fw_form_cor_botao_confirmar {
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  border-radius: 0 3px 3px 0;
  background-color: #169e91;
  color: #fff;
  font-size: 1.4rem;
}
#fw_form_cor .fw_form_cor_bloco_input .fw_form_cor_bloco_remover {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  flex-basis: 0%;
}
#fw_form_cor .fw_form_cor_bloco_input .fw_form_cor_ou {
  height: 40px;
  line-height: 40px;
  font-size: 1.4rem;
  color: #999;
  margin: 0 20px;
}
#fw_form_cor .fw_form_cor_bloco_input .fw_form_cor_botao_remover {
  height: 40px;
  line-height: 40px;
  background-color: #ccc;
  color: #666;
  padding: 0 20px;
  font-size: 1.2rem;
  border-radius: 3px;
}
#fw_form_cor .fw_form_cor_padrao {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-items: flex-start;
}
#fw_form_cor .fw_form_cor_padrao .fw_form_cor_padrao_botao {
  display: flex;
  flex-direction: row;
  padding: 10px 0 15px 20px;
  align-items: center;
  cursor: pointer;
}
#fw_form_cor .fw_form_cor_padrao .fw_form_cor_padrao_checkbox {
  width: 18px;
  height: 18px;
  background-image: linear-gradient(to bottom, #ccc, #ddd);
  border-radius: 3px;
}
#fw_form_cor .fw_form_cor_padrao.fw_form_cor_padrao_checked .fw_form_cor_padrao_checkbox {
  background: #169e91 url("/images/plugins/form/check.svg") no-repeat center center;
  background-size: 10px auto;
}
#fw_form_cor .fw_form_cor_padrao .fw_form_cor_h2 {
  padding-left: 10px;
}
.form_geral .bloco_ckeditor_balao {
  width: 100%;
  position: relative;
  margin: 35px 0 20px;
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #ddd !important;
  padding: 0 15px !important;
  border-radius: 0 0 3px 3px !important;
}
.form_geral .bloco_ckeditor_balao .centralizar {
  width: 100%;
  padding: 5px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.form_geral .bloco_ckeditor_balao .ck-content {
  border: none !important;
  padding: 0 !important;
  border-radius: none !important;
}
.form_geral .bloco_ckeditor_balao .editor_label {
  height: 20px;
  line-height: 20px;
  padding: 0 5px;
  border-bottom: none;
  color: $cor;
  background-color: #fff;
  font-size: 1.4rem;
  position: absolute;
  left: 10px;
  top: -10px;
}
.form_geral .bloco_ckeditor_balao.bloco_ckeditor_sem_label {
  border-radius: 0 !important;
  border: none !important;
  margin: 0 !important;
}
.form_geral .bloco_ckeditor_clasico {
  margin-top: 20px;
}
.form_geral .bloco_ckeditor_clasico .editor_label {
  width: 100%;
  color: #666;
  background-color: #eee;
  border: 1px solid #ddd;
  border-bottom: none;
  font-weight: 300;
  font-size: 1.4rem;
  padding: 10px 15px;
  display: flex;
}
.form_geral .bloco_ckeditor_clasico .ck-content {
  max-height: calc(100vh - 240px);
  padding: 5px 20px 10px 20px;
  overflow-y: hidden !important;
}
.form_geral .bloco_ckeditor_clasico .ck-content.ck-focused {
  overflow-y: auto !important;
}
.bloco_editor > textarea {
  display: none;
}
.form_geral .bloco_ckeditor {
  display: flex;
  justify-content: center;
}
.form_geral .fw_form_imagem {
  width: 100%;
  margin-top: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.form_geral .fw_form_imagem .fw_imagem_label {
  width: 100%;
  height: 30px;
  line-height: 30px;
  font-size: 1.6rem;
  font-weight: 300;
  color: #666;
  padding: 0 10px;
  border: 1px solid #eee;
  border-bottom: none;
}
.form_geral .fw_form_imagem .fw_imagem_conteudo {
  position: relative;
  background: #eee;
  border: 10px solid #eee;
  overflow: hidden;
}
.form_geral .fw_form_imagem .fw_imagem_conteudo .fw_imagem_figure {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.form_geral .fw_form_imagem .fw_imagem_conteudo .fw_imagem_icone {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  fill: #ccc;
  z-index: 1;
}
.form_geral .fw_form_imagem .fw_imagem_conteudo .fw_imagem_icone svg {
  max-width: calc(100% - 40px);
  max-height: calc(100% - 40px);
}
.form_geral .fw_form_imagem .fw_imagem_controle {
  width: calc(100% - 20px);
  position: absolute;
  left: 10px;
  display: flex;
  flex-direction: row;
  z-index: 2;
}
.form_geral .fw_form_imagem .fw_imagem_controle .fw_imagem_linha {
  flex-grow: 1;
  flex-basis: 0%;
}
.form_geral .fw_form_imagem .fw_imagem_controle .fw_imagem_icone {
  width: 35px;
  height: 35px;
  overflow: hidden;
  position: relative;
  fill: #fff;
  background-color: #fff;
  box-shadow: 0 4px 5px rgba(0,0,0,0.1);
  border-radius: 3px;
  margin: 0 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.form_geral .fw_form_imagem .fw_imagem_controle .fw_imagem_icone.fw_imagem_upload {
  background-color: #169e91;
}
.form_geral .fw_form_imagem .fw_imagem_controle .fw_imagem_icone.fw_imagem_visualizar {
  background-color: #00bcf2;
}
.form_geral .fw_form_imagem .fw_imagem_controle .fw_imagem_icone.fw_imagem_remover {
  background-color: #ff6c60;
}
.form_geral .fw_form_imagem .fw_imagem_controle .fw_imagem_icone input {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 10;
}
.form_geral .fw_form_imagem .fw_imagem_hide {
  display: none !important;
}
.form_geral .fw_form_imagem.fw_form_tipo_quadrado .fw_imagem_controle {
  top: 10px;
}
.form_geral .fw_form_imagem.fw_form_tipo_quadrado .fw_imagem_controle.fw_label_existe {
  top: 45px;
}
.form_geral .fw_form_imagem.fw_form_tipo_redondo .fw_imagem_conteudo {
  border-radius: 50%;
  border: none;
  box-shadow: 0 4px 5px rgba(0,0,0,0.05);
}
.form_geral .fw_form_imagem.fw_form_tipo_redondo .fw_imagem_conteudo .fw_imagem_figure {
  background-size: cover;
}
.form_geral .fw_form_imagem.fw_form_tipo_redondo .fw_imagem_controle {
  width: 100%;
  position: relative;
  left: 0;
  bottom: 0;
  margin-top: 15px;
  justify-content: center;
}
.form_geral .fw_form_imagem.fw_form_tipo_redondo .fw_imagem_controle .fw_imagem_linha {
  display: none;
}
.fw_form_arquivo_lista {
  width: 100%;
  background: #eee;
  border: 20px solid #eee;
  position: relative;
  border-right: none;
  border-bottom: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.fw_form_arquivo_lista .fw_arquivo_lista_hide {
  display: none !important;
}
.fw_form_arquivo_lista .fw_form_arquivo_lista_icone {
  width: 35px;
  height: 35px;
  overflow: hidden;
  position: relative;
  fill: #fff;
  background-color: #fff;
  box-shadow: 0 4px 5px rgba(0,0,0,0.1);
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 2;
}
.fw_form_arquivo_lista .fw_form_arquivo_lista_icone.fw_form_arquivo_lista_upload {
  position: absolute;
  top: -10px;
  left: -10px;
  opacity: 0;
  transition: opacity 0.3s ease-out;
  background-color: #169e91;
}
.fw_form_arquivo_lista .fw_form_arquivo_lista_icone.fw_form_arquivo_lista_download {
  background-color: #00bcf2;
}
.fw_form_arquivo_lista .fw_form_arquivo_lista_icone.fw_form_arquivo_lista_remover {
  background-color: #ff6c60;
}
.fw_form_arquivo_lista:hover .fw_form_arquivo_lista_upload {
  opacity: 1;
}
.fw_form_arquivo_lista .fw_form_arquivo_lista_lista {
  width: 100%;
  height: 300px;
  flex-wrap: wrap;
  overflow-y: auto;
  align-items: flex-start;
}
.fw_form_arquivo_lista .fw_form_arquivo_lista_lista .fw_form_arquivo_lista_zero {
  width: 100%;
  height: 100%;
  font-size: 1.8rem;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fw_form_arquivo_lista .fw_form_arquivo_lista_lista .fw_form_arquivo_lista_arquivo {
  width: 200px;
  position: relative;
  margin: 0 20px 20px 0;
  padding: 10px;
  background: #fff;
  border-radius: 5px;
}
.fw_form_arquivo_lista .fw_form_arquivo_lista_lista .fw_form_arquivo_lista_arquivo figure {
  width: 100%;
  height: 150px;
  position: relative;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fw_form_arquivo_lista .fw_form_arquivo_lista_lista .fw_form_arquivo_lista_arquivo figure p {
  font-size: 3rem;
  color: #999;
}
.fw_form_arquivo_lista .fw_form_arquivo_lista_lista .fw_form_arquivo_lista_arquivo .fw_form_arquivo_lista_icone {
  top: 10px;
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
.fw_form_arquivo_lista .fw_form_arquivo_lista_lista .fw_form_arquivo_lista_arquivo .fw_form_arquivo_lista_icone.fw_form_arquivo_lista_download {
  top: 15px;
  right: 60px;
}
.fw_form_arquivo_lista .fw_form_arquivo_lista_lista .fw_form_arquivo_lista_arquivo .fw_form_arquivo_lista_icone.fw_form_arquivo_lista_remover {
  top: 15px;
  right: 15px;
}
.fw_form_arquivo_lista .fw_form_arquivo_lista_lista .fw_form_arquivo_lista_arquivo:hover .fw_form_arquivo_lista_icone {
  opacity: 1;
}
.fw_form_arquivo_lista .fw_form_arquivo_lista_lista .fw_form_arquivo_lista_arquivo .fw_form_arquivo_lista_arquivo_nome {
  width: 100%;
  text-align: center;
  color: #666;
  margin-top: 10px;
}
#fw_imagem_bloco_visualizar {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: rgba(0,0,0,0.7);
  overflow-y: auto;
  display: none;
  justify-content: center;
  align-items: flex-start;
  opacity: 0;
  transition: opacity 0.3s ease-out;
  user-select: none;
}
#fw_imagem_bloco_visualizar.fw_imagem_bloco_abrir {
  opacity: 1;
}
#fw_imagem_bloco_visualizar .fw_imagem_icone {
  width: 30px;
  height: 30px;
  position: fixed;
  top: 20px;
  fill: #fff;
  background-color: rgba(0,0,0,0.7);
  border: 1px solid #fff;
  border-radius: 4px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#fw_imagem_bloco_visualizar .fw_imagem_icone.fw_imagem_fechar {
  right: 20px;
}
#fw_imagem_bloco_visualizar .fw_imagem_icone.fw_imagem_tamanho_real,
#fw_imagem_bloco_visualizar .fw_imagem_icone.fw_imagem_tamanho_reduzido {
  right: 65px;
}
#fw_imagem_bloco_visualizar .fw_imagem_icone.fw_imagem_tamanho_reduzido {
  display: none;
}
#fw_imagem_bloco_visualizar .fw_imagem_figure {
  z-index: 1;
  margin: 20px 0;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMTYgMTYiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDE2IDE2OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHJlY3QgZmlsbCA9IiNDQ0NCQ0IiIHdpZHRoPSI4IiBoZWlnaHQ9IjgiLz48cmVjdCB4PSI4IiBmaWxsID0iI0ZGRkZGRiIgd2lkdGg9IjgiIGhlaWdodD0iOCIvPjxyZWN0IHg9IjgiIHk9IjgiIGZpbGwgPSIjQ0NDQkNCIiB3aWR0aD0iOCIgaGVpZ2h0PSI4Ii8+PHJlY3QgeT0iOCIgZmlsbD0iI0ZGRkZGRiIgd2lkdGg9IjgiIGhlaWdodD0iOCIvPjwvc3ZnPgo=");
  background-repeat: repeat;
}
#fw_imagem_bloco_visualizar .fw_imagem_figure img {
  max-width: calc(100vw - 80px);
  max-height: calc(100vh - 42px);
  float: left;
}
#fw_imagem_bloco_visualizar .fw_imagem_figure img.fw_imagem_img_tamanho_real {
  max-width: calc(100vw - 40px);
  max-height: 1000000px;
}
.fw_form_tag {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.fw_form_tag .fw_form_tag_hide {
  display: none;
}
.fw_form_tag .fw_form_tag_remover_todos {
  width: 120px;
  position: relative;
  margin-top: 10px;
  padding: 5px 0;
  font-size: 1.2rem;
  border-radius: 20px;
  color: #fff;
  background-color: #ff6c60;
  text-align: center;
  cursor: pointer;
  margin-bottom: 10px;
}
.fw_form_tag .fw_form_tag_lista {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.fw_form_tag .fw_form_tag_lista .fw_form_tag_item {
  padding: 2px 0 2px 10px;
  border-radius: 30px;
  background-color: #ddd;
  margin: 0 7px 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: default;
}
.fw_form_tag .fw_form_tag_lista .fw_form_tag_item span {
  font-size: 1.2rem;
}
.fw_form_tag .fw_form_tag_lista .fw_form_tag_item .fw_form_tag_remover {
  width: 15px;
  height: 15px;
  margin: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.fw_form_tag.fw_form_tag_url .fw_form_tag_lista {
  flex-direction: column;
}
.fw_form_tag.fw_form_tag_url .fw_form_tag_lista .fw_form_tag_item span {
  font-size: 1.2rem;
  flex-grow: 1;
  flex-basis: 0%;
}
.form_geral .bloco_input.form_input_uri .form_uri_barra {
  position: absolute;
  top: 0;
  left: 0;
  padding-left: 15px;
  font-size: 1.6rem;
  line-height: 45px;
  height: 45px;
  color: #999;
}
.form_geral .bloco_input.form_input_uri input {
  padding-left: 29px;
}
.fw_form_indice_valor {
  width: 100%;
  flex-wrap: wrap;
}
.fw_form_indice_valor .bloco_input {
  width: calc(100% - 90px);
  margin-bottom: 0;
}
.fw_form_indice_valor .fw_form_indice_valor_botao {
  width: 80px;
  height: 45px;
  line-height: 45px;
  border-radius: 25px;
  color: #fff;
  padding: 0 20px;
  margin: 20px 0 0 10px;
  cursor: pointer;
  text-align: center;
}
.fw_form_indice_valor .fw_form_indice_valor_lista {
  width: 100%;
  margin-top: 20px;
}
.fw_form_indice_valor .fw_form_indice_valor_lista .fw_form_indice_valor_linha {
  width: 100%;
  align-items: center;
  border: 1px solid #ddd;
  border-bottom: none;
}
.fw_form_indice_valor .fw_form_indice_valor_lista .fw_form_indice_valor_linha:last-child {
  border: 1px solid #ddd;
}
.fw_form_indice_valor .fw_form_indice_valor_lista .fw_form_indice_valor_ordem {
  width: 30px;
  height: 30px;
  flex-direction: row;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 5px;
  fill: #999;
}
.fw_form_indice_valor .fw_form_indice_valor_lista .fw_form_indice_valor_linha p {
  width: 150px;
  padding: 5px 10px;
}
.fw_form_indice_valor .fw_form_indice_valor_lista .fw_form_indice_valor_linha p.fw_form_indice_valor_valor {
  border-left: 1px solid #ddd;
}
.fw_form_indice_valor .fw_form_indice_valor_lista .fw_form_indice_valor_linha p strong {
  font-weight: bold;
}
.fw_form_indice_valor .fw_form_indice_valor_lista .fw_form_indice_valor_linha .fw_form_indice_valor_remover {
  width: 20px;
  height: 20px;
  fill: #fff;
  background-color: $corDeletar;
  border-radius: 4px;
  margin-right: 10px;
  cursor: pointer;
}
.fw_form_indice_valor.fw_form_indice_valor_ordenar .fw_form_indice_valor_ordem {
  display: flex;
}
.fw_form_indice_valor.fw_form_indice_valor_ordenar .fw_form_indice_valor_lista .fw_form_indice_valor_linha p {
  width: 180px;
}
.fw_form_select_input_tag {
  flex-wrap: wrap;
}
.fw_form_select_input_tag .fw_form_select_input_tag_botao {
  width: 80px;
  height: 45px;
  line-height: 45px;
  border-radius: 25px;
  color: #fff;
  padding: 0 20px;
  margin: 20px 0 0 10px;
  cursor: pointer;
  text-align: center;
}
.fw_form_select_input_tag .fw_form_select_input_tag_lista {
  width: 100%;
  margin-top: 10px;
}
.fw_form_select_input_tag .fw_form_select_input_tag_lista .fw_form_select_input_tag_linha {
  width: 100%;
  align-items: center;
  border: 1px solid #ddd;
  border-bottom: none;
}
.fw_form_select_input_tag .fw_form_select_input_tag_lista .fw_form_select_input_tag_linha:last-child {
  border-bottom: 1px solid #ddd;
}
.fw_form_select_input_tag .fw_form_select_input_tag_lista .fw_form_select_input_tag_linha .fw_form_select_input_tag_indice {
  width: 100px;
  border-right: 1px solid #ddd;
}
.fw_form_select_input_tag .fw_form_select_input_tag_lista .fw_form_select_input_tag_linha .fw_form_select_input_tag_valor {
  width: calc(100% - 100px);
}
.fw_form_select_input_tag .fw_form_select_input_tag_lista .fw_form_select_input_tag_linha .fw_form_select_input_tag_indice,
.fw_form_select_input_tag .fw_form_select_input_tag_lista .fw_form_select_input_tag_linha .fw_form_select_input_tag_valor {
  padding: 5px 10px;
}
.fw_form_select_input_tag .fw_form_select_input_tag_lista .fw_form_select_input_tag_linha .fw_form_select_input_tag_remover {
  width: 20px;
  height: 20px;
  background-color: $deletar;
  fill: #fff;
  cursor: pointer;
  background-color: #ff6c60;
  border-radius: 4px;
  margin: 0 10px;
}
.fw_form_tabela {
  width: 100%;
  margin-top: 20px;
}
.fw_form_tabela .fw_tabela_label {
  width: 100%;
  margin-bottom: 5px;
}
.fw_form_tabela .fw_form_tabela_botao {
  height: 30px;
  line-height: 30px;
  padding: 0 20px;
  border-radius: 4px;
  border: 1px solid $cor;
  cursor: pointer;
}
.fw_form_tabela .fw_form_botao_linha_conula {
  margin-bottom: 10px;
}
.fw_form_tabela .fw_form_botao_linha_conula .fw_form_tabela_botao {
  margin-right: 10px;
}
.fw_form_tabela .fw_form_tabela_row {
  width: 100%;
}
.fw_form_tabela .fw_form_tabela_scroll {
  max-width: 100%;
  overflow-x: auto;
  border-bottom: 1px solid #ccc;
}
.fw_form_tabela .fw_form_tabela_header,
.fw_form_tabela .fw_form_tabela_conteudo {
  width: 100%;
}
.fw_form_tabela .fw_form_tabela_linha {
  width: 100%;
  align-items: center;
  position: relative;
  border: 1px solid #ccc;
  border-bottom: none;
  padding: 0 10px;
}
.fw_form_tabela .fw_form_tabela_linha .fw_form_tabela_drag {
  cursor: pointer;
  width: 30px;
  height: 30px;
  fill: #999;
}
.fw_form_tabela .fw_form_tabela_linha .fw_form_tabela_remover {
  cursor: pointer;
  width: 30px;
  height: 30px;
  fill: #999;
}
.fw_form_tabela .fw_form_tabela_linha .fw_form_tabela_linha_conteudo {
  width: calc(100% - 60px);
}
.fw_form_tabela .fw_form_tabela_linha .fw_form_tabela_coluna {
  width: 350px;
  border-right: 1px solid #ccc;
  align-items: center;
}
.fw_form_tabela .fw_form_tabela_linha .fw_form_tabela_coluna .fw_form_tabela_texto {
  width: 100%;
  height: 40px;
  padding: 0 10px;
}
.fw_form_tabela .fw_form_tabela_header .fw_form_tabela_linha .fw_form_tabela_coluna .fw_form_tabela_texto {
  width: calc(100% - 115px);
}
.fw_form_tabela .fw_form_tabela_linha .fw_form_tabela_coluna .fw_form_tabela_tamanho {
  width: 40px;
  height: 30px;
  border: 1px solid #ccc;
  text-align: center;
  margin-right: 5px;
  border-radius: 4px;
}
.fw_form_tabela .fw_form_tabela_linha .fw_form_tabela_coluna .fw_form_tabela_grow {
  width: 15px;
  height: 15px;
  margin-right: 10px;
}
.fw_form_tabela .fw_form_tabela_linha .fw_form_tabela_coluna .fw_form_tabela_grow input {
  display: none;
}
.fw_form_tabela .fw_form_tabela_linha .fw_form_tabela_coluna .fw_form_tabela_grow .fw_form_tabela_grow_check {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
}
.fw_form_tabela .fw_form_tabela_linha .fw_form_tabela_coluna .fw_form_tabela_grow input:checked + .fw_form_tabela_grow_check {
  background: $cor url("/images/plugins/form/check.svg") no-repeat center center;
  background-size: 8px;
}
.fw_form_tabela .fw_form_tabela_header .fw_form_tabela_linha .fw_form_tabela_coluna .fw_form_tabela_remover {
  margin-right: 5px;
}
.fw_form_tabela .fw_form_tabela_header .fw_form_tabela_linha .fw_form_tabela_coluna .fw_form_tabela_drag {
  margin-left: 10px;
  transform: rotate(90deg);
}
.form_input_traducao {
  width: 100%;
  position: relative;
}
.form_input_traducao .bloco_input {
  padding: 8px 0 5px 30px;
}
.form_input_traducao .bloco_input input {
  height: 25px;
}
.form_input_traducao .form_input_traducao_lang {
  z-index: 2;
  position: absolute;
  left: 10px;
  top: 10px;
}
.form_input_traducao .form_input_traducao_lang span {
  height: 25px;
  line-height: 25px;
  color: #999;
}
.form_input_traducao .bloco_input label {
  top: -10px;
  opacity: 1;
}
.fw_form_lista_hide {
  display: none !important;
}
.fw_form_lista {
  width: 100%;
}
.fw_form_lista .fw_form_lista_bloco {
  width: 100%;
}
.fw_form_lista .fw_form_lista_bloco .form_input_traducao {
  width: calc(100% - 90px);
}
.fw_form_lista .fw_form_lista_bloco .fw_form_lista_botao {
  width: 80px;
  height: 45px;
  line-height: 45px;
  border-radius: 25px;
  color: #fff;
  padding: 0 20px;
  margin: 20px 0 0 10px;
  cursor: pointer;
  text-align: center;
}
.fw_form_lista .fw_form_lista_conteudo {
  width: 100%;
  border-bottom: 1px solid #ccc;
}
.fw_form_lista .fw_form_lista_item {
  width: 100%;
  align-items: center;
  border: 1px solid #ccc;
  border-bottom: none;
}
.fw_form_lista .fw_form_lista_item .fw_form_icone {
  cursor: pointer;
  width: 30px;
  height: 30px;
  fill: #999;
  margin-right: 5px;
}
.fw_form_lista .fw_form_lista_item .fw_form_icone.fw_form_lista_salvar {
  width: 25px;
  height: 25px;
  background-color: $cor;
  fill: #fff;
  border-radius: 50%;
}
.fw_form_lista .fw_form_lista_item .fw_form_lista_bloco_texto {
  flex-direction: column;
  padding: 5px 10px 5px 0;
}
.fw_form_lista .fw_form_lista_item .fw_form_lista_bloco_texto .fw_form_lista_p {
  width: 100%;
  min-height: 22.5px;
  padding-left: 40px;
  position: relative;
  align-items: center;
}
.fw_form_lista .fw_form_lista_item .fw_form_lista_bloco_texto .fw_form_lista_p::before {
  width: 10px;
  height: 2px;
  background-color: #ccc;
  content: "";
  position: absolute;
  left: 25px;
}
.fw_form_lista .fw_form_lista_item .fw_form_lista_bloco_texto .fw_form_lista_p::after {
  content: attr(data-lang);
  position: absolute;
  left: 0;
  color: #666;
}
.fw_form_lista .fw_form_lista_item .fw_form_lista_bloco_texto .fw_form_lista_p input {
  width: 100%;
}
@charset "UTF-8";
/*
 * animate.css -http://daneden.me/animate
 * Version - 3.7.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 * https://daneden.github.io/animate.css
 * Copyright (c) 2018 Daniel Eden
 */
@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}
@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}
@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}
@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}
.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}
.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}
.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}
.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}
@media (print), (prefers-reduced-motion) {
  .animated {
    -webkit-animation: unset !important;
    animation: unset !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}
#fw_loading_bola {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 10010;
  background-color: rgba(255,255,255,0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease-out;
}
#fw_loading_bola.fw_loading_abrir {
  opacity: 1;
}
#fw_loading_bola .fw_loading_bola_icone {
  border-radius: 50%;
  animation: fw_loading_bola 1.1s linear 0s infinite;
}
#fw_loading_bola .fw_loading_bola_texto {
  position: absolute;
  margin-top: 70px;
  font-size: 1.2rem;
}
.fw_loading_form {
  width: 80%;
  height: 3px;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #3cf;
  animation: fw_loading_form 2s linear infinite;
  border-radius: 3px;
}
.fw_loading_barra {
  width: 17px;
  height: 26px;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: inline-block;
}
.fw_loading_barra .fw_loading_barra_barra {
  display: inline-block;
  position: absolute;
  left: 0px;
  width: 3px;
  background: #fff;
  border-radius: 3px;
  animation: fw_loading_barra 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}
.fw_loading_barra .fw_loading_barra_barra:nth-child(1) {
  left: 0;
  animation-delay: -0.24s;
}
.fw_loading_barra .fw_loading_barra_barra:nth-child(2) {
  left: 7px;
  animation-delay: -0.12s;
}
.fw_loading_barra .fw_loading_barra_barra:nth-child(3) {
  left: 14px;
  animation-delay: 0;
}
#fw_loading_total {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10010;
  cursor: progress;
}
#fw_loading_total #fw_loading_total_bg {
  width: 0;
  height: 0;
  position: fixed;
  background-color: #23b9a9;
  display: flex;
  border-radius: 50%;
  z-index: 1;
}
#fw_loading_total #fw_loading_total_player {
  height: 200px;
  position: fixed;
  z-index: 2;
}
@media (orientation: landscape) {
  #fw_loading_total #fw_loading_total_bg {
    animation: fw_loading_total_landscape 1s ease-out forwards;
  }
}
@media (orientation: portrait) {
  #fw_loading_total #fw_loading_total_bg {
    animation: fw_loading_total_portrait 1s ease-out forwards;
  }
}
.fw_alerta_notificacao {
  max-width: calc(100% - 40px);
  position: fixed;
  background: #fff;
  box-shadow: 0 4px 5px rgba(0,0,0,0.2);
  right: -100%;
  top: 20px;
  opacity: 0;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow: hidden;
  transition: right 0.5s ease-out, opacity 0.5s ease-out, top 0.5s ease-out;
  z-index: 100002;
}
.fw_alerta_notificacao.fw_alerta_notificacao_abrir {
  right: 20px;
  opacity: 1;
}
.fw_alerta_notificacao .fw_alerta_notificacao_icone {
  width: 50px;
  height: 500px;
  position: absolute;
  left: 0;
  background-color: rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  fill: #fff;
}
.fw_alerta_notificacao .fw_alerta_notificacao_p {
  max-width: 400px;
  font-size: 1.6rem;
  line-height: 1.5em;
  padding: 15px 5px 15px 20px;
  cursor: default;
}
.fw_alerta_notificacao .fw_alerta_notificacao_fechar {
  width: 40px;
  height: 40px;
  fill: #999;
  display: flex;
  margin-right: 10px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
}
.fw_alerta_notificacao .fw_alerta_notificacao_barra {
  width: 0%;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #ccc;
  animation: fw_alerta_notificacao_tempo 5.5s linear 0.5s forwards;
}
.fw_alerta_notificacao:hover .fw_alerta_notificacao_barra {
  animation-play-state: paused;
}
.fw_alerta_notificacao.fw_alerta_notificacao_ok {
  background-color: #23b9a9;
  padding-left: 50px;
}
.fw_alerta_notificacao.fw_alerta_notificacao_ok .fw_alerta_notificacao_p {
  color: #fff;
}
.fw_alerta_notificacao.fw_alerta_notificacao_ok .fw_alerta_notificacao_fechar {
  fill: #fff;
}
.fw_alerta_notificacao.fw_alerta_notificacao_ok .fw_alerta_notificacao_barra {
  height: 2px;
  background-color: #fff;
}
.fw_alerta_notificacao.fw_alerta_notificacao_erro {
  background-color: #ff6c60;
  padding-left: 50px;
}
.fw_alerta_notificacao.fw_alerta_notificacao_erro .fw_alerta_notificacao_p {
  color: #fff;
}
.fw_alerta_notificacao.fw_alerta_notificacao_erro .fw_alerta_notificacao_fechar {
  fill: #fff;
}
.fw_alerta_notificacao.fw_alerta_notificacao_erro .fw_alerta_notificacao_barra {
  height: 2px;
  background-color: #fff;
}
#fw_alerta_mensagem {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.7);
  z-index: 100002;
  transition: opacity 0.3s ease-out;
  opacity: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
}
#fw_alerta_mensagem .fw_alerta_mensagem_conteudo {
  width: calc(100% - 40px);
  max-width: 500px;
  margin: -400px 0 20px;
  transition: margin-top 0.5s ease-out;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 5px rgba(0,0,0,0.2);
  overflow: hidden;
}
#fw_alerta_mensagem .fw_alerta_mensagem_conteudo .fw_alerta_mensagem_hide {
  display: none !important;
}
#fw_alerta_mensagem.fw_alerta_mensagem_abrir {
  opacity: 1;
}
#fw_alerta_mensagem.fw_alerta_mensagem_abrir .fw_alerta_mensagem_conteudo {
  margin-top: 20px;
}
#fw_alerta_mensagem .fw_alerta_mensagem_conteudo .fw_alerta_mensagem_header {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#fw_alerta_mensagem .fw_alerta_mensagem_conteudo .fw_alerta_mensagem_header.fw_alerta_mensagem_header_ok {
  background-color: #23b9a9;
  padding-bottom: 25px;
}
#fw_alerta_mensagem .fw_alerta_mensagem_conteudo .fw_alerta_mensagem_header.fw_alerta_mensagem_header_erro {
  background-color: #ff6c60;
  padding-bottom: 25px;
}
#fw_alerta_mensagem .fw_alerta_mensagem_conteudo .fw_alerta_mensagem_header.fw_alerta_mensagem_header_atencao {
  background-color: #f47521;
  padding-bottom: 25px;
}
#fw_alerta_mensagem .fw_alerta_mensagem_conteudo .fw_alerta_mensagem_header .fw_alerta_mensagem_icone {
  height: 200px;
  margin-top: 10px;
}
#fw_alerta_mensagem .fw_alerta_mensagem_conteudo .fw_alerta_mensagem_header .fw_alerta_mensagem_titulo {
  width: 100%;
  line-height: 1.3em;
  text-align: center;
  font-size: 2rem;
  margin-top: 40px;
  color: #333;
  padding: 0 40px;
}
#fw_alerta_mensagem .fw_alerta_mensagem_conteudo .fw_alerta_mensagem_header.fw_alerta_mensagem_header_ok .fw_alerta_mensagem_titulo,
#fw_alerta_mensagem .fw_alerta_mensagem_conteudo .fw_alerta_mensagem_header.fw_alerta_mensagem_header_erro .fw_alerta_mensagem_titulo,
#fw_alerta_mensagem .fw_alerta_mensagem_conteudo .fw_alerta_mensagem_header.fw_alerta_mensagem_header_atencao .fw_alerta_mensagem_titulo {
  color: #fff;
  margin-top: -5px;
}
#fw_alerta_mensagem .fw_alerta_mensagem_conteudo .fw_alerta_mensagem_texto {
  width: 100%;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.5em;
  color: #666;
  margin-top: 40px;
  padding: 0 40px;
}
#fw_alerta_mensagem .fw_alerta_mensagem_conteudo .fw_alerta_mensagem_texto div,
#fw_alerta_mensagem .fw_alerta_mensagem_conteudo .fw_alerta_mensagem_texto strong,
#fw_alerta_mensagem .fw_alerta_mensagem_conteudo .fw_alerta_mensagem_texto b,
#fw_alerta_mensagem .fw_alerta_mensagem_conteudo .fw_alerta_mensagem_texto i {
  font-size: 1.6rem;
}
#fw_alerta_mensagem .fw_alerta_mensagem_conteudo .fw_alerta_mensagem_texto strong,
#fw_alerta_mensagem .fw_alerta_mensagem_conteudo .fw_alerta_mensagem_texto b {
  font-weight: bold;
}
#fw_alerta_mensagem .fw_alerta_mensagem_conteudo .fw_alerta_mensagem_texto i {
  font-style: italic;
}
#fw_alerta_mensagem .fw_alerta_mensagem_conteudo .fw_alerta_mensagem_footer {
  display: flex;
  flex-direction: row;
  padding: 40px 20px;
  justify-content: center;
}
#fw_alerta_mensagem .fw_alerta_mensagem_conteudo .fw_alerta_mensagem_footer .fw_alerta_mensagem_botao_flex {
  max-width: 100px;
  flex-grow: 1;
  flex-basis: 0%;
}
#fw_alerta_mensagem .fw_alerta_mensagem_conteudo .fw_alerta_mensagem_footer .fw_alerta_mensagem_botao {
  height: 40px;
  line-height: 40px;
  padding: 0 25px;
  border-radius: 20px;
  font-size: 1.4rem;
  color: #fff;
  cursor: pointer;
}
#fw_alerta_mensagem .fw_alerta_mensagem_conteudo .fw_alerta_mensagem_footer .fw_alerta_mensagem_botao.fw_alerta_mensagem_botao_ok,
#fw_alerta_mensagem .fw_alerta_mensagem_conteudo .fw_alerta_mensagem_footer .fw_alerta_mensagem_botao.fw_alerta_mensagem_botao_confirmar {
  background-color: #23b9a9;
}
#fw_alerta_mensagem .fw_alerta_mensagem_conteudo .fw_alerta_mensagem_footer .fw_alerta_mensagem_botao.fw_alerta_mensagem_botao_cancelar {
  background-color: #ff6c60;
}
.fw_popup_body {
  overflow: hidden !important;
  padding-right: 10px;
}
.fw_popup_display_none {
  display: none !important;
}
.fw_popup_conteudo {
  opacity: 1;
  transition: margin-top 0.3s ease-out, opacity 0.3s ease-out;
}
.fw_popup_conteudo_animacao {
  margin-top: -100px !important;
  opacity: 0;
}
#bloco_fw_popup {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  background-color: rgba(0,0,0,0.7);
  opacity: 0;
  z-index: 10001;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  transition: opacity 0.3s ease-out;
}
#bloco_fw_popup.fw_popup_animacao {
  opacity: 1;
}
.bloco_geral_texto {
  background-color: var(--cor-branco-cinza);
  border-radius: 5px;
  box-shadow: 0 2px 10px var(--cor-box-shadow);
  padding: 20px;
}
@media screen and (max-width: 900px) {
  .bloco_geral_texto {
    box-shadow: none;
    border: 1px solid $corBorda;
  }
}
.bloco_geral_texto header h1 {
  line-height: 1.5em;
  font-size: 2.4rem;
}
@media screen and (max-width: 600px) {
  .bloco_geral_texto header h1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 600px) {
  .bloco_geral_texto header h1 {
    line-height: 1.2em;
  }
}
.texto {
  width: 100%;
  line-height: 1.5em;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .texto {
    font-size: 1.3rem;
  }
}
.texto p,
.texto b,
.texto strong,
.texto a,
.texto i,
.texto li {
  line-height: 1.5em;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .texto p,
  .texto b,
  .texto strong,
  .texto a,
  .texto i,
  .texto li {
    font-size: 1.3rem;
  }
}
.deletar p {
  width: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #f00;
  font-size: 0.8em;
  line-height: 1.5em;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 5px;
}
.bold {
  font-weight: bold;
}
.botao_geral_cor {
  height: 45px;
  line-height: 45px;
  border-radius: 5px;
  font-size: 1.6rem;
  padding: 0 20px;
  text-align: center;
  cursor: pointer;
  background: var(--cor-clube);
}
@media screen and (max-width: 600px) {
  .botao_geral_cor {
    font-size: 1.3rem;
  }
}
.botao_pequeno_cor {
  height: 26px;
  line-height: 26px;
  border-radius: 5px;
  font-size: 1.2rem;
  padding: 0 10px;
  text-align: center;
  cursor: pointer;
}
.botao_padrao_grande {
  line-height: 45px;
  border-radius: 5px;
  font-size: 1.6rem;
  padding: 0 20px;
  text-align: center;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .botao_padrao_grande {
    font-size: 1.3rem;
  }
}
.botao_pequeno_borda {
  height: 26px;
  line-height: 26px;
  border-radius: 5px;
  font-size: 1.2rem;
  padding: 0 10px;
  text-align: center;
  border: 1px dashed;
  cursor: pointer;
}
.botao_geral_cor_auto_height {
  height: auto;
  line-height: 1.5em;
  border-radius: 5px;
  font-size: 1.6rem;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  color: var(--cor-cinza-cinza);
}
@media screen and (max-width: 600px) {
  .botao_geral_cor_auto_height {
    font-size: 1.3rem;
  }
}
.botao_geral_borda {
  height: 45px;
  line-height: 45px;
  border-radius: 5px;
  font-size: 1.6rem;
  padding: 0 20px;
  text-align: center;
  cursor: pointer;
  border: 1px solid;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .botao_geral_borda {
    font-size: 1.3rem;
  }
}
.botao_link_underline:hover {
  text-decoration: underline;
}
.botao_input {
  position: relative;
  display: flex;
  flex-direction: row;
}
.botao_input label {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  padding: 10px 20px;
  border: 1px solid var(--cor-clube);
  cursor: pointer;
  line-height: 1.5em;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .botao_input label {
    font-size: 1.3rem;
  }
}
.botao_input input[type="radio"],
.botao_input input[type="checkbox"] {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
}
.botao_input input[type="radio"]:checked + label,
.botao_input input[type="checkbox"]:checked + label {
  background-color: var(--cor-clube);
  color: #fff;
}
.bloco_geral_ul {
  width: 100%;
}
.bloco_geral_ul li {
  list-style: disc;
  line-height: 1.5em;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .bloco_geral_ul li {
    font-size: 1.3rem;
  }
}
.bloco_geral_ul li span {
  font-size: 1em;
}
.bloco_geral_tabela {
  width: 100%;
  overflow-x: auto;
}
.bloco_geral_sub_menu {
  background-color: var(--cor-branco-cinza);
  border-radius: 5px;
  box-shadow: 0 2px 10px var(--cor-box-shadow);
  padding: 20px;
  display: flex;
  flex-direction: column;
  position: absolute;
  padding: 10px 0;
}
@media screen and (max-width: 900px) {
  .bloco_geral_sub_menu {
    box-shadow: none;
    border: 1px solid $corBorda;
  }
}
.bloco_geral_sub_menu a {
  height: 48px;
  line-height: 48px;
  line-height: 1.5em;
  font-size: 1.6rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 20px;
}
@media screen and (max-width: 600px) {
  .bloco_geral_sub_menu a {
    font-size: 1.3rem;
  }
}
.bloco_geral_sub_menu a:hover {
  background-color: var(--cor-clube);
  color: #fff;
}
.bloco_geral_sub_menu a i {
  display: flex;
  align-items: center;
  margin-right: 10px;
}
.bloco_geral_sem_resultado {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
}
.bloco_geral_sem_resultado.atencao {
  border: 1px dashed #ccc;
  padding: 40px 20px;
  border-radius: 10px;
}
.bloco_geral_sem_resultado i {
  fill: #ccc;
  margin-bottom: 30px;
}
.bloco_geral_sem_resultado h1 {
  line-height: 1.5em;
  font-size: 2.4rem;
  text-align: center;
  margin-top: 5px;
}
@media screen and (max-width: 600px) {
  .bloco_geral_sem_resultado h1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 600px) {
  .bloco_geral_sem_resultado h1 {
    line-height: 1.2em;
  }
}
.bloco_geral_sem_resultado p {
  max-width: 450px;
  line-height: 1.5em;
  font-size: 1.6rem;
  text-align: center;
  margin-top: 5px;
}
@media screen and (max-width: 600px) {
  .bloco_geral_sem_resultado p {
    font-size: 1.3rem;
  }
}
.bloco_geral_sem_resultado .botao {
  margin: 20px 0;
}
.bloco_geral_imagem_direita,
.bloco_geral_imagem_esquerda {
  width: 100%;
  height: 200px;
  display: flex;
  flex-direction: row;
  box-shadow: 0 2px 10px var(--cor-box-shadow);
  align-items: center;
  background-color: var(--cor-branco-cinza);
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .bloco_geral_imagem_direita,
  .bloco_geral_imagem_esquerda {
    box-shadow: none;
    border: 1px solid $corBorda;
  }
}
.bloco_geral_imagem_direita figure,
.bloco_geral_imagem_esquerda figure {
  width: 250px;
  height: 200px;
  margin-right: 40px;
}
.bloco_geral_imagem_direita header,
.bloco_geral_imagem_esquerda header {
  flex-grow: 1;
  flex-basis: 0%;
  padding-right: 40px;
  margin-right: 40px;
  border-right: 1px solid #ddd;
}
.bloco_geral_imagem_direita header h1,
.bloco_geral_imagem_esquerda header h1 {
  line-height: 1.5em;
  font-size: 2.4rem;
}
@media screen and (max-width: 600px) {
  .bloco_geral_imagem_direita header h1,
  .bloco_geral_imagem_esquerda header h1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 600px) {
  .bloco_geral_imagem_direita header h1,
  .bloco_geral_imagem_esquerda header h1 {
    line-height: 1.2em;
  }
}
.bloco_geral_imagem_direita header p,
.bloco_geral_imagem_esquerda header p {
  line-height: 1.5em;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .bloco_geral_imagem_direita header p,
  .bloco_geral_imagem_esquerda header p {
    font-size: 1.3rem;
  }
}
.bloco_geral_imagem_direita .final,
.bloco_geral_imagem_esquerda .final {
  margin-right: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.bloco_geral_imagem_direita .valor,
.bloco_geral_imagem_esquerda .valor {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.bloco_geral_imagem_direita .valor .apartir,
.bloco_geral_imagem_esquerda .valor .apartir {
  width: 100%;
  margin-bottom: 2px;
  font-size: 1.2rem;
  color: var(--cor-cinza-cinza);
}
.bloco_geral_imagem_direita .valor .preco,
.bloco_geral_imagem_esquerda .valor .preco {
  display: flex;
  flex-direction: row;
}
.bloco_geral_imagem_direita .valor .preco .sifrao,
.bloco_geral_imagem_esquerda .valor .preco .sifrao {
  font-size: 1.1rem;
  margin: 5px 5px 0 0;
}
.bloco_geral_imagem_direita .valor .preco .real,
.bloco_geral_imagem_esquerda .valor .preco .real {
  font-weight: 500;
  font-size: 3rem;
}
.bloco_geral_imagem_direita .valor .preco .asterisco,
.bloco_geral_imagem_esquerda .valor .preco .asterisco {
  font-size: 1.2rem;
  margin-top: 2px;
  color: #999;
}
.bloco_geral_imagem_direita .valor .observacao,
.bloco_geral_imagem_esquerda .valor .observacao {
  font-size: 1.1rem;
  line-height: 1.5em;
  margin-top: 5px;
}
.bloco_geral_imagem_direita {
  flex-direction: row-reverse;
}
.bloco_geral_imagem_direita figure {
  margin: 0;
}
.bloco_geral_imagem_direita .final {
  margin-left: 40px;
  margin-right: 0;
}
.bloco_geral_imagem_direita header {
  padding: 0 0 0 40px;
  margin: 0 40px;
  border-left: 1px solid #ddd;
  border-right: none;
}
.display_none {
  display: none !important;
}
.display_block {
  display: block !important;
}
.display_flex {
  display: flex !important;
}
.titulo_geral {
  width: 100%;
  display: flex;
  flex-direction: row;
  margin-bottom: 10px;
  align-items: center;
}
.titulo_geral h1 {
  line-height: 1.5em;
  font-size: 2.4rem;
  flex-grow: 1;
  flex-basis: 0%;
}
@media screen and (max-width: 600px) {
  .titulo_geral h1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 600px) {
  .titulo_geral h1 {
    line-height: 1.2em;
  }
}
.titulo_geral a {
  line-height: 1.5em;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .titulo_geral a {
    font-size: 1.3rem;
  }
}
.bloco_atencao_geral {
  width: 100%;
  padding: 10px;
  border: 1px dashed var(--cor-alerta);
  border-radius: 5px;
}
.bloco_atencao_geral h1 {
  line-height: 1.5em;
  font-size: 2.4rem;
}
@media screen and (max-width: 600px) {
  .bloco_atencao_geral h1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 600px) {
  .bloco_atencao_geral h1 {
    line-height: 1.2em;
  }
}
.bloco_atencao_geral h2 {
  line-height: 1.5em;
  font-size: 2rem;
}
@media screen and (max-width: 600px) {
  .bloco_atencao_geral h2 {
    font-size: 1.8rem;
  }
}
.bloco_atencao_geral p {
  line-height: 1.5em;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .bloco_atencao_geral p {
    font-size: 1.3rem;
  }
}
.bloco_atencao_geral_icone {
  width: 100%;
  padding: 10px;
  border: 1px dashed var(--cor-alerta);
  border-radius: 5px;
}
.bloco_atencao_geral_icone p {
  line-height: 1.5em;
  font-size: 1.6rem;
  padding-left: 10px;
}
@media screen and (max-width: 600px) {
  .bloco_atencao_geral_icone p {
    font-size: 1.3rem;
  }
}
.bloco_titulo_texto,
.bloco_titulo_texto_centralizado {
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px var(--cor-box-shadow);
  border-radius: 5px;
  background: var(--cor-branco-cinza);
  padding: 10px 20px;
}
@media screen and (max-width: 900px) {
  .bloco_titulo_texto,
  .bloco_titulo_texto_centralizado {
    box-shadow: none;
    border: 1px solid $corBorda;
  }
}
.bloco_titulo_texto > h1,
.bloco_titulo_texto_centralizado > h1 {
  line-height: 1.5em;
  font-size: 2.4rem;
  margin-top: 5px;
}
@media screen and (max-width: 600px) {
  .bloco_titulo_texto > h1,
  .bloco_titulo_texto_centralizado > h1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 600px) {
  .bloco_titulo_texto > h1,
  .bloco_titulo_texto_centralizado > h1 {
    line-height: 1.2em;
  }
}
.bloco_titulo_texto > p,
.bloco_titulo_texto_centralizado > p {
  line-height: 1.5em;
  font-size: 1.6rem;
  margin: 15px 0;
}
@media screen and (max-width: 600px) {
  .bloco_titulo_texto > p,
  .bloco_titulo_texto_centralizado > p {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 900px) {
  .bloco_titulo_texto > p,
  .bloco_titulo_texto_centralizado > p {
    margin: 8px 0;
  }
}
.bloco_titulo_texto_centralizado {
  text-align: center;
  align-items: center;
}
.article_favoritos {
  justify-content: flex-start;
}
.article_favoritos .parceiro_favorito {
  width: calc((100% / 3) - 20px);
  margin-right: 20px;
}
.cor_bg {
  background-color: var(--cor-clube);
  color: #fff !important;
  fill: #fff !important;
}
#bloco_menu_perfil #container_mais_acao {
  display: flex;
  padding: 15px;
  margin: 0px;
  align-items: center;
}
#bloco_menu_perfil #container_mais_acao #icone_mais_acao {
  padding: 0px;
}
#bloco_menu_perfil #container_mais_acao .texto_menu_mais_acao {
  line-height: 1.5em;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  #bloco_menu_perfil #container_mais_acao .texto_menu_mais_acao {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 1000px) {
  #bloco_menu_perfil #container_mais_acao {
    margin-left: 16px;
  }
}
.pagina_atual:hover {
  background: var(--cor-clube) !important;
}
.pagina_atual svg {
  fill: #fff !important;
}
.cor_color_hover:hover,
.cor_color {
  color: var(--cor-clube);
}
[data-theme="dark"] .bloco_parceiro article .bloco_favorito {
  position: absolute;
  top: 23px;
  right: 23px;
}
.form_geral .bloco_input label,
.form_geral .bloco_input_footer .input_mensagem.ativo,
.form_geral .bloco_input .input_geral.input_obrigatorio ~ label:after {
  background: var(--cor-branco-cinza);
}
#fw_form_select .option,
#bloco_geral_autocomplete .option {
  background: var(--cor-branco-cinza) !important;
}
#fw_form_select .option li,
#bloco_geral_autocomplete .option li {
  color: var(--cor-preto-branco) !important;
}
@media screen and (max-width: 900px) {
  .article_favoritos .parceiro_favorito {
    width: calc(50% - 15px);
    margin: 0px;
    margin-bottom: 20px;
    min-height: 250px;
  }
}
@media screen and (max-width: 600px) {
  .article_favoritos .parceiro_favorito {
    width: 100%;
    margin-bottom: 20px;
  }
}
.botao_fixo_bottom {
  width: 100%;
  max-width: 240px;
  height: 60px;
  line-height: 60px;
  position: fixed;
  bottom: 42px;
  left: calc((100% / 2) - 120px + 150px);
  opacity: 1;
  transition: opacity 0.3s ease-out, bottom 0.3s ease-out;
  overflow: hidden;
}
.botao_fixo_bottom.fechar {
  bottom: 0;
  opacity: 0;
}
@media screen and (max-width: 1250px) {
  .botao_fixo_bottom {
    left: calc((100% / 2) - 120px);
  }
}
@media screen and (max-width: 600px) {
  .botao_fixo_bottom {
    max-width: calc(100% - 80px);
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
  }
}
[data-anime-botao] {
  opacity: 0;
  transition: 0.3s;
}
[data-anime-botao="left"] {
  transform: translate3d(-50px, 0, 0);
}
[data-anime-botao="right"] {
  transform: translate3d(50px, 0, 0);
}
.container_scroll.ativar [data-anime-botao] {
  opacity: 1;
  transform: translate3d(0px, 0px, 0px);
}
.botao_scroll.animar-botao {
  transform: translate3d(0px, 100px, 0px);
  opacity: 0;
}
.coluna {
  display: flex;
  flex-direction: column;
}
.form_input_dupla {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.form_input_dupla .bloco_input {
  margin-right: 20px;
}
.form_input_dupla .bloco_input:last-child {
  margin-right: 0;
}
.bloco_regulamento {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 25px;
  margin-top: 25px;
  padding: 0px 20px;
}
.bloco_regulamento p {
  line-height: 1.5em;
  font-size: 1.6rem;
  margin-top: 5px;
}
@media screen and (max-width: 600px) {
  .bloco_regulamento p {
    font-size: 1.3rem;
  }
}
.input_hidden {
  width: 1px;
  height: 1px;
  position: absolute;
  top: -99999px;
  left: -99999px;
  opacity: 0;
}
.form_geral .bloco_input input:focus ~ .borda,
.form_geral .bloco_input textarea:focus ~ .borda {
  border-color: var(--cor-clube);
}
.form_geral .bloco_input label {
  color: var(--cor-clube);
}
.form_geral .bloco_input .input_ajuda {
  background-color: var(--cor-clube);
}
.form_geral label .input_ajuda {
  background-color: var(--cor-clube);
}
.form_geral .option li.hover,
.form_geral .option li.selected.hover {
  color: #fff;
  background-color: var(--cor-clube);
}
.form_geral input:checked ~ label::after {
  background-color: var(--cor-clube);
}
.form_geral input:checked ~ label::after {
  background: var(--cor-clube);
}
.form_geral input:checked ~ label span {
  background-color: var(--cor-clube);
}
.form_geral .form_bloco .bloco_input_select.input_focus .input_conteudo::after {
  border: 2px solid var(--cor-clube);
}
.form_geral .form_bloco .bloco_input_select.input_focus .input_conteudo .input_select_linha {
  background-color: var(--cor-clube);
}
.form_geral .bloco_input input,
.form_geral .bloco_input textarea {
  color: var(--cor-preto-branco);
}
.form_geral .bloco_input input::placeholder,
.form_geral .bloco_input textarea {
  color: var(--cor-cinza-cinza);
}
#popup_pesquisa .form_geral .bloco_input {
  margin-top: 10px;
}
#popup_pesquisa .conteudo_popup header {
  margin-bottom: 10px !important;
}
#popup_pesquisa .conteudo_popup header h1 {
  width: 90%;
}
#popup_pesquisa .bloco_perguntas_pesquisa,
#popup_pesquisa .imagens_popup_pesquisa img {
  width: 100%;
}
#popup_pesquisa header .bloco_input .input_select {
  margin-top: 10px;
}
#popup_pesquisa .form_geral .bloco_input {
  margin-top: 10px;
}
#popup_pesquisa #form_indicar_loja .imagens_popup_pesquisa {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 5px;
}
#popup_pesquisa #form_indicar_loja #bloco_texto_pesquisa_regras .vigencia_pesquisa {
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
#popup_pesquisa #form_indicar_loja #bloco_texto_pesquisa_regras .regras_pesquisa {
  text-align: center;
  border: 1px dashed #ccc;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 15px;
}
#fw_form_select .option,
#bloco_geral_autocomplete .option {
  border: 1px solid #ddd;
  background: #fff;
  box-shadow: 0 4px 5px rgba(0,0,0,0.3);
}
#fw_form_select .option li,
#bloco_geral_autocomplete .option li {
  color: var(--cor-cinza-cinza);
}
#fw_form_select .option li.hover,
#bloco_geral_autocomplete .option li.hover,
#fw_form_select .option li.selected.hover,
#bloco_geral_autocomplete .option li.selected.hover {
  background-color: var(--cor-clube);
  color: #fff !important;
}
.form_geral .bloco_switch label {
  color: var(--cor-cinza-cinza);
}
.form_geral .bloco_input label {
  background-color: var(--cor-branco-preto);
}
.form_geral.cinza .bloco_input label {
  background-color: var(--cor-branco-cinza);
}
#bloco_form_buscar,
#bloco_form_login,
#bloco_escolha_login,
#popup_login {
  max-width: 500px;
}
#popup_login {
  width: 100%;
}
#bloco_form_ativar {
  max-width: 800px;
}
#bloco_escolha_login {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
#bloco_escolha_login .fechar {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 10px;
  fill: #666;
  cursor: pointer;
}
#bloco_escolha_login .fechar.esquerda {
  left: 15px;
}
#bloco_escolha_login .fechar.direita {
  right: 15px;
}
#bloco_escolha_login .icone {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  fill: #ccc;
  margin: 20px 0;
}
#bloco_escolha_login h1 {
  line-height: 1.5em;
  font-size: 2.4rem;
  color: var(--cor-clube);
}
@media screen and (max-width: 600px) {
  #bloco_escolha_login h1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 600px) {
  #bloco_escolha_login h1 {
    line-height: 1.2em;
  }
}
#bloco_escolha_login p {
  max-width: 250px;
  line-height: 1.5em;
  font-size: 1.6rem;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  #bloco_escolha_login p {
    font-size: 1.3rem;
  }
}
#bloco_escolha_login .botao {
  width: 100%;
  max-width: 250px;
  line-height: 45px;
  border-radius: 5px;
  font-size: 1.6rem;
  padding: 0 20px;
  text-align: center;
  cursor: pointer;
  background-color: var(--cor-clube);
  color: #fff;
  margin-bottom: 15px;
}
@media screen and (max-width: 600px) {
  #bloco_escolha_login .botao {
    font-size: 1.3rem;
  }
}
#bloco_escolha_login .linha_funcionario {
  width: 100%;
  max-width: 250px;
  margin: 5px 0 20px;
  height: 1px;
  background-color: #ccc;
}
.bloco_form_login {
  width: calc(100% - 40px);
  max-height: calc(100vh - 40px);
  margin: 20px;
  overflow-y: auto;
  overflow-x: hidden;
  background: #fff;
  position: relative;
  background-color: var(--cor-branco-cinza);
  border-radius: 5px;
  box-shadow: 0 2px 10px var(--cor-box-shadow);
  padding: 20px;
}
@media screen and (max-width: 900px) {
  .bloco_form_login {
    box-shadow: none;
    border: 1px solid $corBorda;
  }
}
.bloco_form_login .conteudo {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.bloco_form_login header {
  width: 100%;
  margin-bottom: 30px;
  position: relative;
  padding-right: 30px;
}
.bloco_form_login header .bloco {
  width: 100%;
  display: flex;
  flex-direction: row;
}
.bloco_form_login header .bloco h1 {
  line-height: 1.5em;
  font-size: 2.4rem;
  color: var(--cor-clube);
  flex-grow: 1;
  flex-basis: 0%;
}
@media screen and (max-width: 600px) {
  .bloco_form_login header .bloco h1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 600px) {
  .bloco_form_login header .bloco h1 {
    line-height: 1.2em;
  }
}
.bloco_form_login header .bloco .voltar {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-right: 10px;
  fill: #666;
}
.bloco_form_login header p {
  line-height: 1.5em;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .bloco_form_login header p {
    font-size: 1.3rem;
  }
}
.bloco_form_login .fechar {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 15px;
  z-index: 10;
  fill: #666;
}
.bloco_form_login .aviso_cadastro {
  width: 100%;
  padding: 10px;
  border: 1px dashed var(--cor-alerta);
  border-radius: 5px;
  margin-bottom: 20px;
}
.bloco_form_login .bloco_input {
  width: 100%;
  margin-top: 10px;
}
.bloco_form_login .bloco_recaptcha {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 15px 0 5px;
}
.bloco_form_login .bloco_botao {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  margin-top: 10px;
}
.bloco_form_login .bloco_botao .botao {
  line-height: 45px;
  border-radius: 5px;
  font-size: 1.6rem;
  padding: 0 20px;
  text-align: center;
  cursor: pointer;
  background-color: var(--cor-clube);
  color: #fff;
}
@media screen and (max-width: 600px) {
  .bloco_form_login .bloco_botao .botao {
    font-size: 1.3rem;
  }
}
.bloco_form_login .bloco_link {
  width: 100%;
  border-top: 1px solid #ddd;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 30px;
  padding-top: 30px;
  text-align: center;
}
.bloco_form_login .bloco_link .botao {
  line-height: 1.5em;
  font-size: 1.6rem;
  color: #1f80ff;
  margin: 0 10px;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .bloco_form_login .bloco_link .botao {
    font-size: 1.3rem;
  }
}
.bloco_form_login h2 {
  width: 100%;
  line-height: 1.5em;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .bloco_form_login h2 {
    font-size: 1.3rem;
  }
}
.bloco_form_login ul {
  width: 100%;
  list-style: circle;
  list-style-position: inside;
  padding-left: 10px;
}
.bloco_form_login ul li {
  width: 100%;
  margin: 5px 0;
}
.bloco_form_login .texto_pequeno {
  font-size: 1.2rem;
  color: #999;
}
.bloco_form_login .bloco {
  width: calc(50% - 10px);
  display: flex;
  flex-direction: column;
}
.bloco_form_login .lista {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.bloco_form_login .lista .bloco_input {
  width: calc(50% - 10px);
}
.bloco_form_login .linha {
  width: 100%;
  height: 1px;
  background-color: #ddd;
  margin: 25px 0 30px;
}
#bloco_form_login .bloco_ativar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#bloco_form_login .bloco_ativar .ativar {
  background-color: var(--cor-clube);
  margin-top: 20px;
  color: #fff;
  line-height: 1.5em;
  font-size: 1.6rem;
  padding: 7px 20px;
  border-radius: 4px;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  #bloco_form_login .bloco_ativar .ativar {
    font-size: 1.3rem;
  }
}
#bloco_form_ativar .obrigatorio {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  padding: 15px 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
#bloco_form_ativar .obrigatorio h2 {
  font-size: 1.8rem;
  font-weight: bold;
}
#bloco_form_ativar .obrigatorio > p {
  width: 100%;
  line-height: 1.5em;
  font-size: 1.6rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 600px) {
  #bloco_form_ativar .obrigatorio > p {
    font-size: 1.3rem;
  }
}
#bloco_form_ativar .obrigatorio .campo {
  width: 100%;
  margin-top: 5px;
}
#bloco_form_ativar .obrigatorio .campo p {
  width: 100%;
  display: flex;
  flex-direction: row;
}
#bloco_form_ativar .obrigatorio .campo span,
#bloco_form_ativar .obrigatorio .campo strong {
  line-height: 1.5em;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  #bloco_form_ativar .obrigatorio .campo span,
  #bloco_form_ativar .obrigatorio .campo strong {
    font-size: 1.3rem;
  }
}
#bloco_form_ativar .obrigatorio .campo span {
  color: #666;
}
#bloco_form_ativar .obrigatorio .campo strong {
  font-weight: bold;
  color: #333;
  margin-left: 5px;
}
#bloco_form_ativar .bloco_senha {
  margin-top: 10px;
}
#bloco_form_ativar .texto_senha {
  margin-top: 10px;
}
#bloco_form_ativar .bloco_cep {
  width: 150px;
}
#bloco_form_ativar .bloco_logradouro {
  width: calc(100% - 170px);
}
#bloco_form_ativar .bloco_numero {
  width: 200px;
}
#bloco_form_ativar .bloco_complemento {
  width: calc(100% - 220px);
}
#bloco_form_ativar .bloco_bairro,
#bloco_form_ativar .bloco_estado,
#bloco_form_ativar .bloco_cidade {
  width: calc((100% / 3) - 13.3px);
}
#bloco_form_ativar .bloco_termo {
  margin-top: 40px;
}
#bloco_form_ativar .termo {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  flex-basis: 0%;
  align-items: center;
  padding-right: 40px;
}
#bloco_form_ativar .termo .botao_termo {
  line-height: 1.5em;
  font-size: 1.6rem;
  padding-left: 10px;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  #bloco_form_ativar .termo .botao_termo {
    font-size: 1.3rem;
  }
}
#bloco_form_ativar .termo .botao_termo:hover {
  text-decoration: underline;
}
@media screen and (max-width: 425px) {
  #bloco_form_ativar .conteudo {
    flex-direction: column;
  }
  #bloco_form_ativar .bloco {
    width: 100%;
  }
  #bloco_form_ativar .lista {
    flex-direction: column;
  }
  #bloco_form_ativar .lista .bloco_input {
    width: 100%;
  }
  #bloco_form_ativar .bloco_botao {
    flex-direction: column;
  }
  #bloco_form_ativar .bloco_botao .termo {
    padding-bottom: 20px;
  }
}
#bloco_form_recuperar_senha {
  max-width: 500px;
}
#bloco_form_recuperar_senha .bloco_geral {
  width: 100%;
  border-top: 1px solid #ccc;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
}
#bloco_form_recuperar_senha .bloco_geral p {
  line-height: 1.5em;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  #bloco_form_recuperar_senha .bloco_geral p {
    font-size: 1.3rem;
  }
}
#bloco_form_recuperar_senha .bloco_geral ul {
  margin-top: 10px;
}
#bloco_form_recuperar_senha .bloco_geral ul li {
  font-size: 1.5rem;
}
#bloco_form_recuperar_senha .bloco_geral .bloco_input {
  margin: 30px 0 0;
}
#bloco_form_recuperar_senha .bloco_geral .atencao {
  margin: 10px 0 20px;
}
#bloco_form_recuperar_senha .bloco_geral .separador {
  width: 100%;
}
#bloco_form_recuperar_senha .bloco_escolha {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
#bloco_form_recuperar_senha .bloco_escolha h2 {
  text-align: center;
  color: var(--cor-clube);
  font-weight: bold;
}
#bloco_form_recuperar_senha .bloco_escolha p {
  line-height: 1.5em;
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  #bloco_form_recuperar_senha .bloco_escolha p {
    font-size: 1.3rem;
  }
}
#bloco_form_recuperar_senha .bloco_escolha .botao {
  height: 40px;
  line-height: 40px;
  margin: 10px 10px 0 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 0 20px;
  font-size: 1.6rem;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  #bloco_form_recuperar_senha .bloco_escolha .botao {
    font-size: 1.3rem;
  }
}
#bloco_form_recuperar_senha .bloco_escolha .botao:hover {
  border-color: var(--cor-clube);
  color: var(--cor-clube);
}
#bloco_form_recuperar_senha .bloco_usar_codigo {
  justify-content: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
#bloco_form_recuperar_senha .bloco_usar_codigo > input {
  width: 45px;
  height: 45px;
  border: 1px solid #ccc;
  border-radius: 5px;
  text-align: center;
  font-size: 1.6rem;
  margin: 20px 5px 0;
}
@media screen and (max-width: 600px) {
  #bloco_form_recuperar_senha .bloco_usar_codigo > input {
    font-size: 1.3rem;
  }
}
#bloco_form_recuperar_senha .bloco_usar_codigo .botao {
  line-height: 1.5em;
  font-size: 1.6rem;
  margin-top: 20px;
}
@media screen and (max-width: 600px) {
  #bloco_form_recuperar_senha .bloco_usar_codigo .botao {
    font-size: 1.3rem;
  }
}
#bloco_form_recuperar_senha .bloco_usar_codigo .botao.reenviar {
  cursor: pointer;
}
#bloco_form_recuperar_senha .bloco_usar_codigo .botao span {
  line-height: 1.5em;
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  #bloco_form_recuperar_senha .bloco_usar_codigo .botao span {
    font-size: 1.3rem;
  }
}
#bloco_form_buscar {
@media screen and (max-width: 600px) {
 {
      font-size: 1.3rem;
    }
}
  font-size: ;
}
#bloco_form_buscar .bloco_escolha_usuario {
  width: 100%;
  margin-bottom: 20px;
}
#bloco_form_buscar .bloco_escolha_usuario p,
#bloco_form_buscar .bloco_escolha_usuario h1 {
  line-height: 1.5em;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  #bloco_form_buscar .bloco_escolha_usuario p,
  #bloco_form_buscar .bloco_escolha_usuario h1 {
    font-size: 1.3rem;
  }
}
#bloco_form_buscar .bloco_escolha_usuario .bloco_tipo_usuario {
  display: flex;
  min-height: 50px;
}
#bloco_form_buscar .bloco_escolha_usuario .bloco_tipo_usuario .botao_tipo_usuario {
  border-radius: 5px;
  height: 40px;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  margin-right: 10px;
  border: 1px solid var(--cor-clube);
  line-height: 1.5em;
  font-size: 1.6rem;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  #bloco_form_buscar .bloco_escolha_usuario .bloco_tipo_usuario .botao_tipo_usuario {
    font-size: 1.3rem;
  }
}
.bloco_titular {
  width: 100%;
}
.bloco_titular h1 {
  line-height: 1.5em;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .bloco_titular h1 {
    font-size: 1.3rem;
  }
}
.bloco_titular .termo {
  width: 100%;
  display: flex;
  flex-direction: row;
  margin-top: 10px;
}
*::-webkit-scrollbar {
  width: 10px;
}
*::-webkit-scrollbar-track {
  background: transparent;
}
*::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 15px;
  height: 150px;
}
*:hover::-webkit-scrollbar-thumb {
  background: #cfcfcf;
}
body {
  background: #f6f6f6;
  font-family: 'Inter', sans-serif;
  color: #495057;
}
.body_scroll_hidden {
  overflow: hidden;
}
.fw_pagina_body {
  padding-right: 10px;
}
.grecaptcha-badge {
  display: none !important;
}
.mobile {
  display: none !important;
}
@media screen and (max-width: 1000px) {
  .mobile {
    display: flex !important;
  }
  .desktop {
    display: none !important;
  }
}
#bg_geral {
  width: 100%;
  height: 740px;
  max-height: 100vh;
  position: absolute;
  top: 10px;
  left: 0;
  background: url("../images/login/bg_banner.png") repeat center center;
  z-index: 1;
  opacity: 0.7;
}
#bg_geral .degrade {
  width: 100%;
  height: 70%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  background-image: linear-gradient(rgba(246,246,246,0), #f6f6f6);
}
#site {
  width: 100%;
  border-top: 10px solid var(--cor-clube);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  z-index: 2;
}
#header_principal {
  width: 100%;
  max-width: 1300px;
  padding: 0 20px;
  top: 0;
  padding: 40px 20px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  z-index: 4;
  position: absolute;
}
#header_principal figure {
  flex-grow: 1;
  flex-basis: 0%;
}
#header_principal figure img {
  height: 60px;
}
#menu_principal {
  display: flex;
  flex-direction: row;
  align-items: center;
  z-index: 4;
}
#menu_principal .conteudo {
  display: flex;
  flex-direction: row;
}
#menu_principal .conteudo .botao {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  padding: 0 12px 10px 12px;
}
#menu_principal .conteudo .botao i {
  height: 30px;
  font-size: 3em;
  overflow: hidden;
  fill: var(--cor-clube);
}
#menu_principal .conteudo .botao p {
  font-size: 1.6rem;
  color: #666;
  margin-top: 5px;
}
@media screen and (max-width: 600px) {
  #menu_principal .conteudo .botao p {
    font-size: 1.3rem;
  }
}
#menu_principal .conteudo .botao .borda {
  width: calc(100% - 24px);
  height: 3px;
  position: absolute;
  bottom: -10px;
  left: 12px;
  background-color: var(--cor-clube);
  opacity: 0;
  transition: opacity 0.3s ease-out, bottom 0.3s ease-out;
}
#menu_principal .conteudo .botao.hover .borda,
#menu_principal .conteudo .botao:hover .borda {
  opacity: 1;
  bottom: 0;
}
#menu_principal .entrar_mobile {
  width: calc(100% - 60px);
  margin: 30px;
  display: none;
  height: 50px;
  line-height: 50px;
  border-radius: 5px;
  background-color: var(--cor-clube);
  color: #fff;
  font-size: 1.6rem;
  justify-content: center;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  #menu_principal .entrar_mobile {
    font-size: 1.3rem;
  }
}
#menu_principal .botao_mobile {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  fill: #666;
  cursor: pointer;
  display: none;
  position: absolute;
  left: 20px;
}
#menu_principal .entrar {
  height: 40px;
  line-height: 40px;
  padding: 0 25px;
  color: #fff;
  background-color: var(--cor-clube);
  font-size: 1.6rem;
  margin-left: 40px;
  border-radius: 3px;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  #menu_principal .entrar {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 1040px) {
  #header_principal figure {
    text-align: center;
  }
  #menu_principal {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    background: #fff;
    padding: 20px 20px 13px 20px;
    box-shadow: 0 -4px 5px rgba(0,0,0,0.1);
    justify-content: center;
  }
  #menu_principal .background {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.7);
    display: none;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease-out;
  }
  #menu_principal .background.animar {
    opacity: 1;
  }
  #menu_principal .background.aberto {
    display: flex;
  }
  #menu_principal .conteudo {
    width: 100%;
    height: 100vh;
    max-width: 300px;
    background: #fff;
    overflow-y: auto;
    box-shadow: 0 5px 5px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    margin-left: -100px;
    transition: margin-left 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 0;
  }
  #menu_principal .background.animar .conteudo {
    margin-left: 0;
    opacity: 1;
  }
  #menu_principal .conteudo .botao {
    border-top: 1px solid #ddd;
    padding: 20px;
  }
  #menu_principal .conteudo .botao:last-child {
    border-bottom: 1px solid #ddd;
  }
  #menu_principal .conteudo .botao .borda {
    display: none;
  }
  #menu_principal .entrar_mobile {
    display: flex;
  }
  #menu_principal .botao_mobile {
    display: flex;
  }
  #menu_principal .entrar {
    margin-left: 0px;
  }
}
#conteudo_principal {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#bloco_footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  padding: 50px 20px;
  z-index: 3;
  gap: 20px;
}
#bloco_footer .logo_footer {
  width: 100%;
  max-width: 1000px;
  margin-bottom: 20px;
}
#bloco_footer .logo_footer img {
  height: 40px;
}
#bloco_footer .footer_home {
  max-width: 1000px;
  width: 100%;
  display: flex;
}
#bloco_footer .footer_home .bloco_contato,
#bloco_footer .footer_home .bloco_ajuda {
  display: flex;
  flex-direction: column;
  display: flex;
  width: 50%;
  gap: 20px;
}
#bloco_footer .footer_home .bloco_contato .dado_footer,
#bloco_footer .footer_home .bloco_ajuda .dado_footer {
  display: flex;
  gap: 10px;
  align-items: center;
}
#bloco_footer .footer_home .bloco_contato .dado_footer p,
#bloco_footer .footer_home .bloco_ajuda .dado_footer p {
  line-height: 1.5em;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  #bloco_footer .footer_home .bloco_contato .dado_footer p,
  #bloco_footer .footer_home .bloco_ajuda .dado_footer p {
    font-size: 1.3rem;
  }
}
#bloco_footer .footer_home .bloco_contato .dado_footer i.icone_footer,
#bloco_footer .footer_home .bloco_ajuda .dado_footer i.icone_footer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 25px;
  width: 25px;
}
@media screen and (max-width: 800px) {
  #bloco_footer {
    padding-bottom: 120px;
  }
  #bloco_footer .centralizar {
    display: flex;
    flex-direction: column;
  }
  #bloco_footer .bloco_contato {
    margin-bottom: 20px;
  }
  #bloco_footer .footer_home .bloco_contato,
  #bloco_footer .footer_home .bloco_ajuda {
    width: 100%;
  }
}
@media screen and (max-width: 390px) {
  p.texto_email {
    max-width: 70%;
  }
}
#bloco_footer .bloco_copyright {
  width: 100%;
  max-width: 1000px;
  padding-top: 30px;
  margin-top: 50px;
  border-top: 1px solid #ddd;
  display: flex;
  flex-direction: column;
}
#bloco_footer .bloco_copyright p {
  font-size: 1.3rem;
  color: #999;
}
#bloco_footer .bloco_copyright a {
  margin-top: 10px;
}
#bloco_footer .bloco_copyright .copy {
  line-height: 1.5em;
  margin-top: 30px;
}
#bloco_faq {
  width: 100%;
  min-height: calc(100vh - 400px);
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-direction: column;
  padding: 0 20px 100px;
  margin-top: 120px;
  z-index: 2;
}
#bloco_faq article {
  width: 100%;
  max-width: 700px;
  background-color: var(--cor-branco-cinza);
  border-radius: 5px;
  box-shadow: 0 2px 10px var(--cor-box-shadow);
  padding: 20px;
  margin: 10px 0;
}
@media screen and (max-width: 900px) {
  #bloco_faq article {
    box-shadow: none;
    border: 1px solid $corBorda;
  }
}
#bloco_faq article h1 {
  line-height: 1.5em;
  font-size: 2.4rem;
  color: var(--cor-clube);
  margin-bottom: 10px;
}
@media screen and (max-width: 600px) {
  #bloco_faq article h1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 600px) {
  #bloco_faq article h1 {
    line-height: 1.2em;
  }
}
@-moz-keyframes fw_pagina_carregando {
  0% {
    width: 0;
    left: 0;
  }
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    left: 100vw;
  }
}
@-webkit-keyframes fw_pagina_carregando {
  0% {
    width: 0;
    left: 0;
  }
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    left: 100vw;
  }
}
@-o-keyframes fw_pagina_carregando {
  0% {
    width: 0;
    left: 0;
  }
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    left: 100vw;
  }
}
@keyframes fw_pagina_carregando {
  0% {
    width: 0;
    left: 0;
  }
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    left: 100vw;
  }
}
@-moz-keyframes form_esqueleto_loading {
  0% {
    left: -40px;
  }
  100% {
    left: 100%;
  }
}
@-webkit-keyframes form_esqueleto_loading {
  0% {
    left: -40px;
  }
  100% {
    left: 100%;
  }
}
@-o-keyframes form_esqueleto_loading {
  0% {
    left: -40px;
  }
  100% {
    left: 100%;
  }
}
@keyframes form_esqueleto_loading {
  0% {
    left: -40px;
  }
  100% {
    left: 100%;
  }
}
@-moz-keyframes loading_form {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
@-webkit-keyframes loading_form {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
@-o-keyframes loading_form {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
@keyframes loading_form {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
@-moz-keyframes form_animacao_barra {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
@-webkit-keyframes form_animacao_barra {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
@-o-keyframes form_animacao_barra {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
@keyframes form_animacao_barra {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
@-moz-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@-o-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@-moz-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@-o-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@-moz-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@-o-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@-moz-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@-o-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@-moz-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@-o-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@-moz-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-o-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-moz-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@-o-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@-moz-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@-o-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@-moz-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-o-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-moz-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@-o-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@-moz-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-o-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-moz-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@-o-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@-moz-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-o-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-moz-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-o-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-moz-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-o-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-moz-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-o-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-moz-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@-o-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@-moz-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@-o-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@-moz-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@-o-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@-moz-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@-o-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@-moz-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@-o-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@-moz-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-o-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-moz-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-o-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-moz-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-o-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-moz-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-o-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-moz-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-o-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-moz-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-o-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-moz-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-o-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-moz-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-o-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-moz-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-o-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-moz-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@-o-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@-moz-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@-o-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@-moz-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@-o-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@-moz-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@-o-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@-moz-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@-o-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@-moz-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@-o-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@-moz-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@-o-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@-moz-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@-o-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@-moz-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@-o-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@-moz-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@-o-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@-moz-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@-o-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@-moz-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@-o-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@-moz-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@-o-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@-moz-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-o-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-moz-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@-o-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@-moz-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-o-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-moz-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-o-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-moz-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-o-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-moz-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-o-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-moz-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-o-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-moz-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@-o-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@-moz-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@-o-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@-moz-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@-o-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@-moz-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@-o-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@-moz-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@-o-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@-moz-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@-o-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@-moz-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-o-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-moz-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-o-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-moz-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@-o-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@-moz-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@-o-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@-moz-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-o-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-moz-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-o-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-moz-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-o-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-moz-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-o-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-moz-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@-o-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@-moz-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-o-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-moz-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@-o-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@-moz-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@-o-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@-moz-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-o-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-moz-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-o-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-moz-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-o-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-moz-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-o-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-moz-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-o-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-moz-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@-o-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@-moz-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@-o-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@-moz-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@-o-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@-moz-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@-o-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@-moz-keyframes fw_loading_total_landscape {
  0% {
    width: 0;
    height: 0;
  }
  100% {
    width: 200vw;
    height: 200vw;
    top: -50vw;
    left: -50vw;
  }
}
@-webkit-keyframes fw_loading_total_landscape {
  0% {
    width: 0;
    height: 0;
  }
  100% {
    width: 200vw;
    height: 200vw;
    top: -50vw;
    left: -50vw;
  }
}
@-o-keyframes fw_loading_total_landscape {
  0% {
    width: 0;
    height: 0;
  }
  100% {
    width: 200vw;
    height: 200vw;
    top: -50vw;
    left: -50vw;
  }
}
@keyframes fw_loading_total_landscape {
  0% {
    width: 0;
    height: 0;
  }
  100% {
    width: 200vw;
    height: 200vw;
    top: -50vw;
    left: -50vw;
  }
}
@-moz-keyframes fw_loading_total_portrait {
  0% {
    width: 0;
    height: 0;
  }
  100% {
    width: 200vh;
    height: 200vh;
    top: -50vh;
    left: -50vh;
  }
}
@-webkit-keyframes fw_loading_total_portrait {
  0% {
    width: 0;
    height: 0;
  }
  100% {
    width: 200vh;
    height: 200vh;
    top: -50vh;
    left: -50vh;
  }
}
@-o-keyframes fw_loading_total_portrait {
  0% {
    width: 0;
    height: 0;
  }
  100% {
    width: 200vh;
    height: 200vh;
    top: -50vh;
    left: -50vh;
  }
}
@keyframes fw_loading_total_portrait {
  0% {
    width: 0;
    height: 0;
  }
  100% {
    width: 200vh;
    height: 200vh;
    top: -50vh;
    left: -50vh;
  }
}
@-moz-keyframes fw_loading_bola {
  0% {
    width: 10px;
    height: 10px;
    border: 3px solid #4aa9e9;
    background-color: #4aa9e9;
    opacity: 1;
  }
  40% {
    background-color: #4aa9e9;
    opacity: 1;
  }
  60% {
    background-color: rgba(255,255,255,0);
    border: 6px solid #4aa9e9;
  }
  100% {
    width: 40px;
    height: 40px;
    border: 1px solid #4aa9e9;
    opacity: 0;
  }
}
@-webkit-keyframes fw_loading_bola {
  0% {
    width: 10px;
    height: 10px;
    border: 3px solid #4aa9e9;
    background-color: #4aa9e9;
    opacity: 1;
  }
  40% {
    background-color: #4aa9e9;
    opacity: 1;
  }
  60% {
    background-color: rgba(255,255,255,0);
    border: 6px solid #4aa9e9;
  }
  100% {
    width: 40px;
    height: 40px;
    border: 1px solid #4aa9e9;
    opacity: 0;
  }
}
@-o-keyframes fw_loading_bola {
  0% {
    width: 10px;
    height: 10px;
    border: 3px solid #4aa9e9;
    background-color: #4aa9e9;
    opacity: 1;
  }
  40% {
    background-color: #4aa9e9;
    opacity: 1;
  }
  60% {
    background-color: rgba(255,255,255,0);
    border: 6px solid #4aa9e9;
  }
  100% {
    width: 40px;
    height: 40px;
    border: 1px solid #4aa9e9;
    opacity: 0;
  }
}
@keyframes fw_loading_bola {
  0% {
    width: 10px;
    height: 10px;
    border: 3px solid #4aa9e9;
    background-color: #4aa9e9;
    opacity: 1;
  }
  40% {
    background-color: #4aa9e9;
    opacity: 1;
  }
  60% {
    background-color: rgba(255,255,255,0);
    border: 6px solid #4aa9e9;
  }
  100% {
    width: 40px;
    height: 40px;
    border: 1px solid #4aa9e9;
    opacity: 0;
  }
}
@-moz-keyframes fw_loading_form {
  0% {
    width: 0;
    left: 0;
  }
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0%;
    left: calc(100% + 50px);
  }
}
@-webkit-keyframes fw_loading_form {
  0% {
    width: 0;
    left: 0;
  }
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0%;
    left: calc(100% + 50px);
  }
}
@-o-keyframes fw_loading_form {
  0% {
    width: 0;
    left: 0;
  }
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0%;
    left: calc(100% + 50px);
  }
}
@keyframes fw_loading_form {
  0% {
    width: 0;
    left: 0;
  }
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0%;
    left: calc(100% + 50px);
  }
}
@-moz-keyframes fw_loading_barra {
  0% {
    top: 0;
    height: 26px;
  }
  50%, 100% {
    top: 8px;
    height: 10px;
  }
}
@-webkit-keyframes fw_loading_barra {
  0% {
    top: 0;
    height: 26px;
  }
  50%, 100% {
    top: 8px;
    height: 10px;
  }
}
@-o-keyframes fw_loading_barra {
  0% {
    top: 0;
    height: 26px;
  }
  50%, 100% {
    top: 8px;
    height: 10px;
  }
}
@keyframes fw_loading_barra {
  0% {
    top: 0;
    height: 26px;
  }
  50%, 100% {
    top: 8px;
    height: 10px;
  }
}
@-moz-keyframes fw_alerta_notificacao_tempo {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes fw_alerta_notificacao_tempo {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-o-keyframes fw_alerta_notificacao_tempo {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes fw_alerta_notificacao_tempo {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
