﻿@keyframes fadein {
  0% {
    opacity: 0;
  }
  66% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  66% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@font-face {
  font-family: 'Coolvetica';
  src:
    url('https://epifer.com.br/dev/img/../fonts/CoolveticaRg-Regular.woff2') format('woff2'),
    url('https://epifer.com.br/dev/img/../fonts/CoolveticaRg-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'NexaSlab';
  src:
    url('https://epifer.com.br/dev/img/../fonts/NexaSlabBoldFREE.woff2') format('woff2'),
    url('https://epifer.com.br/dev/img/../fonts/NexaSlabBoldFREE.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

.hidden {
  opacity: 0;
}

.visible {
  opacity: 1;
}

b {
  font-weight: 700 !important;
}

body,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Open Sans', sans-serif !important;
}

.fundoSite {
  overflow-x: hidden;
}

.has-error {
  border-bottom: 1px solid red !important;
}

.row-eq-height {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

a {
  color: #aaa;
  -webkit-animation: 0.5s ease 0s normal forwards 1 fadein;
  animation: 0.5s ease 0s normal forwards 1 fadein;
}

a:link,
a:visited,
a:hover,
a:active {
  color: #aaa;
  opacity: 0.8;
}

.animacao {
  -webkit-animation: 0.5s ease 0s normal forwards 1 fadein;
  animation: 0.5s ease 0s normal forwards 1 fadein;
}

input[type='text'],
input[type='email'],
select {
  box-shadow: none;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  padding-left: 0;
  padding-right: 0;
  border-color: #98aaba;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  border-radius: 0 !important;
}

input[type='text']:focus,
input[type='email']:focus,
select:focus {
  border-top: 0;
  border-left: 0;
  border-right: 0;
  box-shadow: none;
  border-width: 2px;
}

select {
  background: transparent !important;
  background-position: right 8px bottom 12px;
  border-top: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  padding-left: 0.5rem !important;
  padding-right: 1.5rem !important;
}

label {
  color: #40515f;
  font-size: 0.65rem;
  font-weight: normal;
  pointer-events: none;
}

.group {
  position: relative;
  margin-bottom: 45px;
}

.group input,
.group textarea,
.group select {
  font-size: 18px;
  padding: 10px 10px 10px 5px;
  display: block;
  color: #40515f;
  border: none;
  border-bottom: 1px solid #eee;
  font-weight: 300;
  font-family: 'Open Sans', sans-serif !important;
}

.group input:focus,
.group textarea:focus,
.group select:focus {
  outline: none;
  border-bottom: 0;
}

.group label {
  position: absolute;
  text-transform: none;
  left: 5px;
  top: 10px;
  font-size: 1rem;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}

.group input:focus ~ label,
.group input:valid ~ label {
  top: -20px;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.group textarea:focus ~ label,
.group textarea:valid ~ label {
  top: -10px;
  font-size: 0.85rem;
  color: #aaa;
  letter-spacing: 1px;
}

.group .bar {
  position: relative;
  display: block;
  width: 100%;
  margin-top: -15px;
}

.group .bar:before,
.group .bar:after {
  content: '';
  height: 2px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: #aaa;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}

.group .bar:before {
  left: 0;
}

.group .bar:after {
  right: 0;
}

.group input:focus ~ .bar:before,
.group input:focus ~ .bar:after,
.group textarea:focus ~ .bar:before,
.group textarea:focus ~ .bar:after {
  width: 100%;
  font-weight: 300;
}

.group .highlight {
  position: absolute;
  height: 60%;
  width: 100px;
  top: 25%;
  left: 0;
  pointer-events: none;
  opacity: 0.5;
}

.group.has-error label {
  color: #e46c6c !important;
}

.group.has-error input,
.group.has-error select,
.group.has-error textarea {
  border-bottom: 1px solid rgba(228, 108, 108, 0.5);
}

.group.has-error select.has-error {
  color: #e46c6c;
}

.form-floating-label.has-error label,
.form-floating-label.has-error select {
  color: #e46c6c !important;
}

.form-floating-label.has-error input,
.form-floating-label.has-error textarea,
.form-floating-label.has-error select {
  border-bottom: 1px solid rgba(228, 108, 108, 0.5) !important;
}

@-webkit-keyframes inputHighlighter {
  from {
    background: #aaa;
  }
  to {
    width: 0;
    background: transparent;
  }
}

@-moz-keyframes inputHighlighter {
  from {
    background: #aaa;
  }
  to {
    width: 0;
    background: transparent;
  }
}

@keyframes inputHighlighter {
  from {
    background: #aaa;
  }
  to {
    width: 0;
    background: transparent;
  }
}

.form-error {
  float: right;
  display: inline-block;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

textarea {
  resize: none;
  box-shadow: none !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  border-radius: 0 !important;
  padding: 1rem;
  border-color: #98aaba;
}

textarea:focus {
  box-shadow: none;
  border-top: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
}

button:active {
  outline: none;
}

button:focus {
  outline: none;
}

.button {
  font-weight: 700;
  text-transform: uppercase;
  color: #fff !important;
  border-radius: 5px !important;
}

.button:active {
  outline: none;
}

.button:focus {
  outline: none;
}

.button__botao {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.75rem;
}

.button__rota {
  color: #aaa !important;
  font-size: 0.75rem !important;
  font-weight: 700;
  -webkit-border-radius: 0.3rem !important;
  -moz-border-radius: 0.3rem !important;
  -ms-border-radius: 0.3rem !important;
  border-radius: 0.3rem !important;
  text-transform: uppercase;
  background-color: #fff !important;
}

.button__modal {
  font-size: 1.1rem;
  -webkit-border-radius: 2px !important;
  -moz-border-radius: 2px !important;
  -ms-border-radius: 2px !important;
  border-radius: 2px !important;
}

.button.secondary {
  background-color: #ff2a00 !important;
}

#content[role='erro'] {
  padding: 5rem 0;
}

#content[role='erro'] .animated {
  -webkit-animation-duration: 18s;
  animation-duration: 18s;
}

#content[role='erro'] h1.erro {
  color: #aaa;
  font-size: 5rem;
  font-weight: bold;
}

.swal2-modal h2 {
  font-weight: normal;
  line-height: 1.2 !important;
  margin-bottom: 2rem !important;
}

.swal2-modal hr {
  display: none !important;
}

.swal2-modal button.styled {
  text-transform: uppercase;
  background-color: #aaa !important;
}

.swal2-content {
  margin-bottom: 1em !important;
}

[data-open] {
  cursor: pointer;
  outline: 0;
}

.callout.alert {
  position: fixed;
  right: 40%;
  top: 30%;
  margin: 0 auto;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.15);
  z-index: 99999999;
  border: 0;
  background-color: #fff !important;
  text-align: center !important;
  padding: 1.5rem !important;
  max-width: 24rem;
}

.callout.alert p {
  text-transform: none !important;
  font-weight: 300 !important;
  font-size: 1.4rem !important;
  margin: 0 !important;
  line-height: 1.2 !important;
  margin-bottom: 1em !important;
  text-align: center !important;
}

.callout.alert .button {
  text-transform: uppercase !important;
  font-weight: 700;
}

.callout-overlay {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.75) !important;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 2;
}

.sticky.is-stuck {
  width: 100%;
}

.clear {
  clear: both;
}

@media screen and (max-width: 1500px) and (min-width: 768px) {
  html {
    zoom: 0.8 !important;
    -moz-transform: scale(0.8) !important;
    -moz-transform-origin: 0 0 !important;
  }

  html .box-contato {
    margin-left: 90px !important;
  }

  html .box-contato:last-child {
    margin-left: 90px !important;
  }
}

section.topo {
  background: #aaa;
  color: #fff;
  padding: 18px 0;
}

section.topo .phones > a {
  display: inline-block;
  margin-right: 25px;
  float: left;
  font-size: 14px;
}

section.topo .phones > a > i {
  color: #aaa;
  font-weight: 600;
  float: left;
  background: #fff;
  padding: 5px 9px;
  border-radius: 23px;
  margin: 10px 11px 0 0;
  transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  -webkit-transition: 0.3s ease all;
}

section.topo .phones > a > span {
  color: #fff;
  font-weight: 600;
  float: left;
  line-height: 19px;
  transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  -webkit-transition: 0.3s ease all;
}

section.topo .phones > a.whatsapp {
  float: none;
  margin: 0;
}

section.topo .phones > a.whatsapp > i {
  background: none;
  color: #0fcd0f;
  font-size: 30px;
  padding: 0;
  margin-top: 5px;
}

section.topo .phones > a.whatsapp > span {
  float: none;
  display: block;
  color: #0fcd0f;
  font-size: 14px;
  white-space: nowrap;
  font-weight: 700;
}

section.topo .phones > a.whatsapp > span.title {
  color: #fff;
  font-weight: 400;
  font-size: 13px;
}

section.topo .phones > a:hover > i {
  background: #aaa;
  color: #fff;
}

section.topo .phones > a:hover > span {
  color: #fff;
}

section.topo .networks {
  margin-top: -7px;
  margin-bottom: -5px;
}

section.topo .networks a {
  font-size: 31px;
  margin-right: 20px;
}

section.topo .networks a i {
  color: #fff;
  transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  -webkit-transition: 0.3s ease all;
}

section.topo .networks a:hover i.fa-facebook {
  color: #5f9cff;
}

section.topo .networks a:hover i.fa-instagram {
  color: #ff43b5;
}

section.depoimentos {
  padding: 50px 0px;
}

section.depoimentos .titulo {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 50px;
}

section.depoimentos .boxDepoimento {
  width: 100%;
}

section.depoimentos .boxDepoimento .conteudo {
  width: 100%;
  border-left: 5px solid #d8d8d8;
  padding-left: 20px;
  color: #858585;
  font-weight: 600;
}

section.depoimentos .boxDepoimento .autor {
  color: #858585;
  font-weight: 600;
  padding: 20px;
}

section.depoimentos .boxDepoimento .autor i {
  color: #f86b02;
}

section.depoimentos .boxDepoimento .local {
  padding-left: 42px;
  font-size: 14px;
  color: #858585;
  font-weight: 600;
  margin-top: -23px;
}

section.depoimentos i.fas.fa-angle-left {
  font-size: 50px;
  position: absolute;
  top: calc(50% - 50px);
  left: -40px;
  color: #bfbfbf;
}

section.depoimentos i.fas.fa-angle-right {
  font-size: 50px;
  position: absolute;
  top: calc(50% - 50px);
  right: -40px;
  color: #bfbfbf;
}

section.noticias_box {
  padding: 3rem 1rem;
  font-family: 'Open Sans', sans-serif !important;
  background: transparent;
  border-top: 1px solid #e2e2e2;
}

section.noticias_box h2 {
  font-size: 1.5em;
  padding: 0 0 1rem;
  line-height: 1;
  color: white;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 25px;
}

section.noticias_box h2 a {
  color: #000 !important;
  transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  -webkit-transition: 0.3s ease all;
  font-size: 1.6em !important;
}

section.noticias_box h2 a:hover {
  filter: opacity(70%);
}

section.noticias_box .post:hover .thumb::before {
  -webkit-filter: opacity(1);
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

section.noticias_box .post:hover .titulo,
section.noticias_box .post:hover .mais,
section.noticias_box .post:hover .tag {
  color: grey;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

section.noticias_box .post:hover .mais:hover {
  background-color: red !important;
  color: #fff !important;
  font-weight: 700;
  border: none !important;
}

section.noticias_box .columns {
  margin-bottom: 1.5em;
}

section.noticias_box .thumb {
  border-radius: 2px;
  display: block;
  position: relative;
  height: 180px;
}

section.noticias_box .thumb::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.8;
  width: 100%;
  height: 100%;
  background: url('https://epifer.com.br/dev/img/icon-arrow.png') center no-repeat grey;
  -webkit-filter: opacity(0);
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

section.noticias_box .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.noticias_box .titulo {
  font-weight: 700;
  font-size: 0.9em;
  color: grey;
  line-height: 1.3em;
  margin-top: 0.5em;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

section.noticias_box .mais {
  font-size: 0.8em;
  font-weight: 700;
  letter-spacing: 0px;
  color: #40515f;
  padding: 0px 17px;
  border: 1px solid grey;
  border-radius: 21px;
  display: inline-block;
  margin: 5px 0px;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

section.noticias_box .tag {
  font-size: 0.8rem;
  display: block;
  margin-bottom: 5px;
  color: #bbb;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
  font-weight: 700;
}

section.noticias_box a:hover .mais {
  background-color: red !important;
  color: #fff !important;
  font-weight: 700;
  border: none !important;
}

section.separador {
  padding: 4rem 2rem;
  background: #f96a02 !important;
}

section.separador .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  section.separador .left {
    display: block;
    text-align: center;
  }
}

section.separador .left .icone {
  padding-right: 1rem;
}

@media screen and (max-width: 768px) {
  section.separador .left .icone {
    margin-bottom: 16px;
  }
}

section.separador .left .icone img {
  height: 96px;
  width: 60px;
  object-fit: contain;
}

section.separador .left .conteudo .titulo {
  font-size: 25px;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 9px;
}

section.separador .left .conteudo .descricao {
  color: #fff;
  font-weight: 300;
  line-height: 1.2;
  font-size: 1.1rem;
}

@media screen and (max-width: 768px) {
  section.separador .left .conteudo .descricao {
    margin-top: 20px;
  }
}

section.separador .right .formulario {
  padding-top: 1rem;
}

section.separador .right .formulario form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

@media screen and (max-width: 768px) {
  section.separador .right .formulario form {
    display: block;
  }
}

section.separador .right .formulario form label {
  color: #fff;
}

section.separador .right .formulario form .input-place {
  padding-right: 1rem;
}

section.separador
  .right
  .formulario
  form
  .input-place
  ::-webkit-input-placeholder {
  color: #fff;
}

section.separador .right .formulario form .input-place :-moz-placeholder {
  color: #fff;
}

section.separador .right .formulario form .input-place ::-moz-placeholder {
  color: #fff;
}

section.separador .right .formulario form .input-place :-ms-input-placeholder {
  color: #fff;
}

section.separador .right .formulario form .input-place input {
  background: transparent;
  margin: 0;
  color: #fff;
  border-color: #fff;
}

@media screen and (max-width: 768px) {
  section.separador .right .formulario form .input-place {
    margin-bottom: 20px;
  }
}

section.separador .right .formulario form .button-place {
  padding-bottom: 0.5rem;
}

@media screen and (max-width: 768px) {
  section.separador .right .formulario form .button-place {
    margin-top: 30px;
    text-align: center;
  }
}

section.separador .right .formulario form .button-place .botao {
  background-color: white;
  padding: 5px 20px;
  border: 3px solid white;
  border-radius: 1.5rem;
  color: #f96a02;
  text-transform: uppercase;
  font-size: 20px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

section.separador .right .formulario form .button-place .botao:hover {
  background-color: transparent;
  color: white;
}

section.separador .right .formulario form .button-place .botao:active {
  opacity: 0.75;
}

section.newsletter {
  background-color: red;
  color: #fff;
  padding: 30px 0 30px;
}

@media screen and (max-width: 768px) {
  section.newsletter {
    padding: 16px 6px 26px;
    text-align: center;
  }
}

section.newsletter h1 {
  font-size: 24px;
  margin-bottom: -3px;
  font-weight: 700;
}

section.newsletter p {
  font-size: 14px;
}

section.newsletter form {
  position: relative;
}

section.newsletter form input {
  background: transparent;
  border: 1px solid #fff;
  border-radius: 32px !important;
  padding: 22px 32px;
  color: #fff;
  margin: 0;
  font-size: 17px;
  margin-top: 9px;
}

section.newsletter form input:focus {
  background: transparent;
  border: 1px solid #fff;
}

section.newsletter form input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

section.newsletter form input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

section.newsletter form input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

section.newsletter form input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

section.newsletter form input.has-error {
  border-color: #ba0000;
}

section.newsletter form button {
  position: absolute;
  right: 0;
  top: -2px;
  margin-top: 2px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 14px 19px;
  font-size: 16px;
  border-radius: 0 20px 20px 0 !important;
  background-color: white;
  color: red !important;
  border-left: 1px solid white !important;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

section.newsletter form button:before {
  background-color: #ba0000;
}

section.newsletter form button:hover {
  filter: opacity(70%);
}

.mapa {
  height: 300px;
  width: 100%;
  background: #aaa;
  position: relative;
}

.mapa iframe {
  width: 100% !important;
  height: 300px !important;
}

.mapa .maps {
  height: 300px;
}

section.rodape {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #2e3094;
  overflow: hidden;
}

section.rodape .funcionamento {
  line-height: 1.4;
  font-size: 15px;
  font-weight: 700;
  padding: 10px 00px;
}

@media screen and (max-width: 768px) {
  section.rodape .funcionamento {
    text-align: center;
  }
}

section.rodape .bordatipo,
section.rodape .bordatipo {
  position: relative;
}

section.rodape .bordatipo.a1:after,
section.rodape .bordatipo.a1:after {
  content: '';
  width: 1px;
  height: 100%;
  top: 0px;
  left: 20px;
  position: absolute;
  background-color: white;
}

@media screen and (max-width: 768px) {
  section.rodape .bordatipo.a1:after,
  section.rodape .bordatipo.a1:after {
    display: none;
  }
}

section.rodape .bordatipo.a2:after,
section.rodape .bordatipo.a2:after {
  content: '';
  width: 1px;
  height: 100%;
  top: 0px;
  left: -38px;
  position: absolute;
  background-color: white;
}

@media screen and (max-width: 768px) {
  section.rodape .bordatipo.a2:after,
  section.rodape .bordatipo.a2:after {
    display: none;
  }
}

section.rodape a {
  text-decoration: none;
}

section.rodape a:hover {
  color: white;
  text-decoration: underline !important;
}

@media screen and (max-width: 768px) {
  section.rodape .altura {
    height: auto;
    padding: 30px;
  }
}

section.rodape .divMaps {
  padding: 0px !important;
}

section.rodape .logoRodape {
  display: table;
}

section.rodape .logoRodape .divimg {
  display: table-cell;
  text-align: left;
  vertical-align: top;
  text-align: justify;
  font-size: 14px;
  color: white;
}

section.rodape .logoRodape .divimg .descricao {
  padding-top: 25px;
  text-align: justify;
  font-size: 12px;
  line-height: 1.4;
  color: white;
}

section.rodape .titulo_contato {
  color: white;
  font-size: 15px;
  font-weight: 700;
  position: relative;
  line-height: 1.3;
  margin-bottom: 25px;
}

section.rodape .titulo_contato i.fas.fa-mobile-alt {
  font-size: 17px;
  color: #f96a02;
  background-color: white;
  padding: 5px 8px;
  border-radius: 20px;
  position: absolute;
  left: -40px;
  top: 8px;
}

@media screen and (max-width: 768px) {
  section.rodape .titulo_contato i.fas.fa-mobile-alt {
    left: 14%;
  }
}

section.rodape .titulo_contato i.fab.fa-whatsapp {
  font-size: 22px;
  font-weight: 100;
  color: white;
  background-color: #01ce65;
  padding: 4px 5px;
  border-radius: 20px;
  position: absolute;
  left: -40px;
  top: 8px;
}

@media screen and (max-width: 768px) {
  section.rodape .titulo_contato i.fab.fa-whatsapp {
    left: 14%;
  }
}

section.rodape ul.contatos {
  position: relative;
  margin: auto;
  display: inline-flex;
}

section.rodape ul.contatos li {
  font-size: 15px;
  font-weight: 300;
  color: white;
  list-style-type: none;
}

section.rodape ul.contatos li i {
  font-size: 30px;
  margin-right: 5px;
}

section.rodape .menu_rodape li {
  position: relative;
  list-style-type: none;
  text-transform: uppercase;
  font-size: 15px;
  color: white;
  font-weight: 700;
  padding: 2px 0px;
}

section.rodape .menu_rodape li.active:after {
  position: absolute;
  bottom: 0%;
  left: 0%;
  content: '';
  width: 50px;
  height: 2px;
  background-color: #c0c0c0;
}

@media screen and (max-width: 768px) {
  section.rodape .alinhamento {
    text-align: center !important;
  }

  section.rodape .menu_rodape li.active:after {
    left: calc(50% - 25px) !important;
  }
}

section.rodape .formasPagamento {
  text-align: right;
}

section.rodape .formasPagamento img {
  background-color: white;
  padding: 15px;
  margin-right: 134px;
}

@media screen and (max-width: 768px) {
  section.rodape .formasPagamento {
    text-align: center;
  }

  section.rodape .formasPagamento img {
    margin-right: auto;
  }
}

.copyright {
  padding: 30px 0 30px;
  background: #fff;
}

.copyright .cpr {
  padding: 1rem 0px;
  color: #40515f;
  font-family: 'Open Sans', sans-serif !important;
  letter-spacing: 0.4px;
  font-size: 0.813em;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .copyright .cpr {
    white-space: normal !important;
    text-align: center !important;
  }
}

.copyright .cpr span {
  font-weight: 600;
  text-transform: uppercase;
}

.copyright ul.selos {
  list-style: none;
  margin: 0px;
}

@media screen and (max-width: 39.9375em) {
  .copyright ul.selos {
    text-align: center;
  }
}

.copyright ul.selos li {
  display: inline-block;
  margin: 0 1rem;
}

.reveal-overlay {
  z-index: 100 !important;
  background-color: rgba(255, 255, 255, 0.85) !important;
}

.reveal-overlay .reveal {
  outline: 0;
  background-color: #fff;
  border: 0 !important;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.15);
  border-radius: 5px !important;
  z-index: 999999;
}

.reveal-overlay .reveal .close-button {
  background: red;
  color: white;
  border-radius: 5px;
  height: 2rem;
  width: 2.5rem;
  top: 1rem;
  right: 1rem;
  font-size: 1.5em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 2;
}

.reveal-overlay .reveal .close-button:hover {
  color: #00000099;
}

.reveal-overlay .reveal .close-button:focus {
  outline: none;
  color: #00000099;
  border: 2px solid #00000099;
}

.reveal-overlay .reveal .reveal-body {
  background-color: #fff;
  padding: 1.5rem 1rem;
}

@media screen and (max-width: 768px) {
  .reveal-overlay .reveal .reveal-body {
    padding: 0px;
  }
}

.reveal-overlay .reveal .reveal-body p {
  text-align: left;
  padding-left: 15px;
  color: #8a8a8a;
}

.reveal-overlay .reveal .reveal-body h2 {
  padding-left: 12px;
}

.reveal-overlay .reveal .reveal-body .button {
  font-family: 'Open Sans', sans-serif !important;
}

.reveal-overlay .reveal h2 {
  color: red;
  text-transform: uppercase;
  line-height: 1.2;
  font-weight: 300;
  padding: 0rem 0rem 0em;
  font-size: 1.85rem;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .reveal-overlay .reveal h2 {
    font-size: 15px;
  }
}

.reveal-overlay .reveal p {
  text-align: left;
  font-weight: 300;
  padding: 1em 1em 0em 1em;
}

.reveal-overlay .reveal .button.expanded {
  font-family: 'Open Sans', sans-serif !important;
  text-transform: uppercase;
  border-radius: 25px;
}

.reveal-overlay .reveal h3 {
  color: #aaa;
  line-height: 1.2;
  font-size: 1rem;
  letter-spacing: -1px;
  font-weight: 300;
  text-transform: uppercase;
  text-align: center;
}

.reveal-overlay .reveal h3 span {
  font-weight: 700;
}

.reveal-overlay .reveal textarea {
  margin-top: 12px;
}

@media screen and (max-width: 768px) {
  .reveal-overlay .reveal textarea {
    height: 80px;
    font-size: 13px;
  }
}

.reveal-overlay .group label {
  color: black !important;
}

@media screen and (max-width: 768px) {
  .reveal-overlay .group {
    margin-bottom: 40px !important;
  }
}

@media screen and (max-width: 768px) {
  .reveal-overlay input,
  .reveal-overlay select {
    font-size: 14px !important;
  }
}

input.button.red {
  background-color: red !important;
}

section.titulo {
  background: url('https://epifer.com.br/dev/img/bg-empresa.jpg');
  background-attachment: fixed;
  background-size: 100%;
  background-repeat: no-repeat;
  padding: 8.125em 1em;
  text-transform: uppercase;
  min-height: 200px;
  max-height: 800px;
  display: table;
  width: 100%;
  vertical-align: middle;
}

section.titulo h1 {
  font-size: 2.7rem;
  color: #fff;
  font-weight: 700;
  position: relative;
  text-align: center;
  z-index: 1;
  display: table-cell;
  vertical-align: middle;
}

section.titulo h2 {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 1.25em;
  color: #fff;
  font-weight: 300;
  padding: 0px 20%;
}

@media screen and (max-width: 39.9375em) {
  section.titulo {
    background-attachment: local;
    background-size: cover;
    padding: 2em 1em 2em;
  }

  section.titulo h1 {
    font-size: 2rem;
  }

  section.titulo h2 {
    font-size: 1em;
    padding: 0px 5%;
  }
}

@media screen and (min-width: 40em) and (max-width: 64em) {
  section.titulo {
    background-attachment: local;
    padding: 2em 1em 2em;
    margin-top: 10px;
  }

  section.titulo h1 {
    font-size: 2rem;
  }

  section.titulo h2 {
    font-size: 1em;
    padding: 0px 5%;
  }
}

section.breadcrumb {
  padding: 32px 0px;
}

section.breadcrumb ul {
  margin: 0;
  list-style: none;
}

section.breadcrumb ul li {
  float: left;
  font-size: 14px;
  color: #545454;
  margin-right: 8px;
  font-weight: 600;
}

section.breadcrumb ul li span,
section.breadcrumb ul li a {
  color: #545454;
}

section.breadcrumb ul li span:hover,
section.breadcrumb ul li a:hover {
  text-decoration: underline;
}

section.breadcrumb ul li:after {
  content: '\f054';
  font-family: 'Font Awesome 5 Free';
  font-size: 12px;
  margin: 0 4px 0 10px;
  font-weight: 900;
}

section.breadcrumb ul li.initial:after,
section.breadcrumb ul li:last-child:after {
  display: none;
}

section.breadcrumb .history-back {
  margin-top: 15px;
  font-size: 14px;
  background-color: red;
  color: white;
  padding: 5px 10px;
  border-radius: 10px;
  border: 1px solid red;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

section.breadcrumb .history-back:hover {
  background-color: white;
  color: red;
}

aside.lateral_quemsomos ul {
  list-style: none;
}

aside.lateral_quemsomos ul li a {
  position: relative;
  border-top: 1px solid #dce4ec;
  border-bottom: 1px solid #dce4ec;
  margin-top: -1px;
  padding: 20px;
  font-size: 1.25rem;
  color: #acacac;
  background: #f2f2f212;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  font-weight: 700;
}

aside.lateral_quemsomos ul li a:after {
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  right: 18px;
  font-size: 25px;
  top: 17px;
}

aside.lateral_quemsomos ul li a.active,
aside.lateral_quemsomos ul li a:hover {
  background: #eaeff8 !important;
  color: #000;
}

@media screen and (max-width: 39.9375em) {
  aside.lateral_quemsomos {
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 40em) and (max-width: 64em) {
  aside.lateral_quemsomos {
    margin-bottom: 50px;
  }
}

aside.lateral {
  margin-top: 50px;
}

aside.lateral .lateral-call h2 {
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 1.3rem;
  margin-bottom: 0;
  color: #555555;
  line-height: 1;
  padding: 1rem 0px;
  padding-bottom: 3px;
  font-weight: 700;
  text-align: center;
}

aside.lateral .lateral-call h2:first-child {
  padding-top: 0px;
}

aside.lateral .lateral-call h3 {
  font-size: 0.8rem;
  line-height: 16px;
  color: #aaa;
  text-align: center;
  margin-bottom: 38px;
}

aside.lateral .lateral-call .formulario {
  position: relative;
}

aside.lateral .lateral-call .formulario form {
  padding: 2rem 1.5rem 2rem;
  margin-bottom: 1rem;
  margin-top: 40px;
  border: 1.5px solid #aaa;
}

aside.lateral .lateral-call .formulario form .form-floating-label {
  position: relative;
  border: 2px solid #a4a8ab;
  border-radius: 10px;
  margin-bottom: 15px;
}

aside.lateral .lateral-call .formulario form .form-floating-label label {
  color: #a4a8ab;
  font-size: 1em;
  position: absolute;
  pointer-events: none;
  left: 16px;
  top: 7px !important;
  transition: all 0.2s ease-in;
  font-weight: 400;
  text-transform: none;
}

aside.lateral
  .lateral-call
  .formulario
  form
  .form-floating-label
  textarea
  ~ label {
  top: 0px;
  font-size: 1em;
  font-weight: 400;
  left: 12px !important;
}

aside.lateral
  .lateral-call
  .formulario
  form
  .form-floating-label
  input:focus
  ~ label,
aside.lateral
  .lateral-call
  .formulario
  form
  .form-floating-label
  input:disabled[value]
  ~ label,
aside.lateral
  .lateral-call
  .formulario
  form
  .form-floating-label.has-value
  input
  ~ label {
  top: 0px !important;
  font-size: 14px;
  font-weight: 400;
  left: 12px !important;
}

aside.lateral
  .lateral-call
  .formulario
  form
  .form-floating-label
  textarea:focus
  ~ label,
aside.lateral
  .lateral-call
  .formulario
  form
  .form-floating-label.has-value
  textarea
  ~ label {
  top: 0px !important;
  font-size: 14px;
  color: #a4a8ab;
  font-weight: 400;
  left: 12px !important;
}

aside.lateral .lateral-call .formulario form input,
aside.lateral .lateral-call .formulario form textarea,
aside.lateral .lateral-call .formulario form select {
  margin: 0;
  border: 0px;
  border-bottom: 1px #eae8e8 solid;
  border-radius: 0px !important;
  font-weight: 400 !important;
  background: transparent !important;
  padding: 21px 11px 4px 8px;
  color: #a4a8ab;
  height: auto;
}

aside.lateral .lateral-call .formulario form select {
  padding-bottom: 16px !important;
}

aside.lateral .lateral-call .formulario form input:focus,
aside.lateral .lateral-call .formulario form select:focus,
aside.lateral .lateral-call .formulario form textarea:focus {
  border-radius: 0px !important;
  box-shadow: none !important;
  color: #40515f;
  padding-left: 10px;
}

aside.lateral .lateral-call .formulario form button.button {
  text-transform: uppercase;
  width: 100%;
  font-size: 0.8rem;
  padding: 0.75rem 1rem;
  display: block;
  font-weight: 300;
  margin: 0px;
  background: #bbb;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

aside.lateral .lateral-call .formulario form button.button:hover {
  background: #767676;
}

aside.lateral .lateral-call .formulario form small {
  color: #bbb;
  font-weight: 700;
}

aside.lateral .call-box {
  border: 1.5px solid #aaa;
  padding: 15px;
  border-radius: 5px;
}

aside.lateral .call-box h2 {
  text-transform: uppercase;
  font-size: 29px;
  margin-bottom: 8px;
}

aside.lateral .call-box .contatos .inf {
  float: left;
}

aside.lateral .call-box .contatos .atendimento .img {
  background: url('https://epifer.com.br/dev/img/telefone.png') center no-repeat;
}

aside.lateral .call-box .contatos .whatsapp .img {
  background: url('https://epifer.com.br/dev/img/whatsapp.png') center no-repeat;
}

aside.lateral .call-box .sv > a {
  display: block;
}

aside.lateral .call-box .sv > a i {
  float: left;
  font-size: 42px;
  line-height: 29px;
  color: #008e00;
}

aside.lateral .call-box .sv > a .titulo {
  float: left;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  line-height: 9px;
  color: #008e00;
  margin-left: 8px;
}

aside.lateral .call-box .sv > a .titulo .numero {
  float: left;
  font-size: 20px;
  margin-top: 13px;
  color: #47525f;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

aside.lateral .call-box .sv > a:hover .numero {
  color: #969696;
}

.formulario-contato {
  padding-bottom: 4rem !important;
}

.formulario-contato .efeitoTransition {
  transition-duration: 0.5s;
}

.formulario-contato h1 {
  font-weight: 700;
  color: white;
  font-size: 3rem;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 1rem;
}

.formulario-contato h2 {
  font-weight: 300;
  color: white;
  font-size: 1.75em;
  margin-bottom: 20px;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.formulario-contato .form-floating-label {
  position: relative;
}

.formulario-contato .form-floating-label label {
  color: #40515f;
  font-size: 1em;
  position: absolute;
  pointer-events: none;
  left: 20px;
  top: 12px !important;
  transition: all 0.2s ease-in;
  font-weight: 400;
  text-transform: none;
}

.formulario-contato .form-floating-label textarea ~ label {
  top: 0px;
  font-size: 1em;
  font-weight: 400;
  left: 12px !important;
}

.formulario-contato .form-floating-label input:focus ~ label,
.formulario-contato .form-floating-label input:disabled[value] ~ label,
.formulario-contato .form-floating-label.has-value input ~ label {
  top: 0px !important;
  font-size: 14px;
  font-weight: 400;
  left: 12px !important;
}

.formulario-contato .form-floating-label textarea:focus ~ label,
.formulario-contato .form-floating-label.has-value textarea ~ label {
  top: 0px !important;
  font-size: 14px;
  font-weight: 400;
  left: 12px !important;
}

.formulario-contato input,
.formulario-contato textarea,
.formulario-contato select {
  font-weight: 400 !important;
  background: #fff !important;
  padding: 24px 12px 8px 12px;
  color: #40515f;
  height: auto;
  border: 1px #000000 solid !important;
  border-radius: 4px !important;
}

.formulario-contato input.has-error,
.formulario-contato textarea.has-error,
.formulario-contato select.has-error {
  border-bottom: 1px solid rgba(228, 108, 108, 0.5);
  color: #e46c6c;
}

.formulario-contato select {
  padding-bottom: 15px !important;
  padding-top: 12px !important;
}

.formulario-contato input:focus,
.formulario-contato select:focus,
.formulario-contato textarea:focus {
  box-shadow: none !important;
  color: #40515f;
  padding-left: 10px;
}

.formulario-contato button.button {
  font-family: 'Open Sans', sans-serif !important;
  text-transform: uppercase;
  font-weight: 400;
  border-radius: 29px !important;
  padding: 14px 66px;
  letter-spacing: 0.6px;
  display: inline-block;
  margin: 0px;
  background: #bbb;
  font-size: 16px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.formulario-contato button.button.button-upload {
  margin: 10px 0;
  display: inline-block;
  width: auto;
}

.formulario-contato button.button:hover {
  background: #bbb;
}

.formulario-contato small {
  color: white;
  font-weight: 700;
}

@media screen and (max-width: 39.9375em) {
  .formulario-contato h1 {
    font-size: 2em;
    text-align: center;
  }

  .formulario-contato h2 {
    font-size: 1em;
  }

  .formulario-contato button.button {
    margin: 1rem 0px;
    width: 100%;
  }
}

@media screen and (min-width: 40em) and (max-width: 64em) {
  .formulario-contato button.button {
    width: 100%;
    margin-top: 0.5rem;
  }
}

aside.lateral-contato {
  background: #f6fbfd;
  margin-left: 45px;
  border-radius: 15px;
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  aside.lateral-contato {
    margin-left: auto !important;
  }
}

aside.lateral-contato .corIcon {
  color: red !important;
}

aside.lateral-contato .corIcon.redes {
  color: #0066b3 !important;
}

aside.lateral-contato .box-contato {
  padding: 20px;
  border-radius: 5px;
}

aside.lateral-contato .box-contato h2 {
  text-transform: uppercase;
  font-size: 29px;
  margin-bottom: 8px;
}

aside.lateral-contato .box-contato .contatos .inf {
  float: left;
}

aside.lateral-contato .box-contato .contatos .atendimento .img {
  background: url('https://epifer.com.br/dev/img/telefone.png') center no-repeat;
}

aside.lateral-contato .box-contato .contatos .whatsapp .img {
  background: url('https://epifer.com.br/dev/img/whatsapp.png') center no-repeat;
}

aside.lateral-contato .box-contato .sv {
  margin-bottom: 15px;
  border-bottom: 1px solid #c3d8f5;
  padding-bottom: 15px;
}

aside.lateral-contato .box-contato .sv:last-child {
  margin: 0;
  padding: 0;
  border: 0;
}

aside.lateral-contato .box-contato .sv .img,
aside.lateral-contato .box-contato .sv i {
  float: left;
  margin-right: 13px;
  font-size: 31px;
}

aside.lateral-contato .box-contato .sv .titulo {
  float: left;
  font-size: 13px;
  font-weight: 700;
  color: #001ca0;
  line-height: 1.5;
  width: calc(100% - 62px);
}

aside.lateral-contato .box-contato .sv .numero {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  font-size: 17px;
  margin-top: -5.5px;
  color: #001ca0;
  font-family: 'Open Sans', sans-serif !important;
  font-weight: 500;
  display: block;
}

aside.lateral-contato .box-contato .sv.redes .titulo {
  margin-left: 47px;
}

aside.lateral-contato .box-contato .sv.redes a {
  float: none;
  margin-left: -47px;
  display: block;
  line-height: 36px;
  margin-bottom: 14px;
}

aside.lateral-contato .box-contato .sv.redes a i {
  font-size: 36px;
  color: #aaa;
}

aside.lateral-contato .box-contato .sv a:hover .numero {
  color: #969696;
}

aside.lateral-contato .box-contato .sv.whatsapp i {
  color: #00d02a;
  font-size: 38px;
}

aside.lateral-contato .box-contato .sv.whatsapp .titulo {
  color: #01d02a;
  font-weight: 700;
  font-size: 14px;
}

.noticias-paginacao {
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .noticias-paginacao {
    text-align: center !important;
  }
}

.noticias-paginacao .noticia-categoria {
  color: #222;
  font-weight: 700;
  text-align: left !important;
}

.noticias-paginacao .noticia {
  display: block;
  margin-bottom: 70px;
}

.noticias-paginacao .noticia .thumb {
  width: 100%;
  background: #eee;
  border-radius: 2px;
  display: block;
  position: relative;
}

.noticias-paginacao .noticia .thumb::before {
  opacity: 0.5;
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: url('https://epifer.com.br/dev/img/icon-arrow.png') center no-repeat #858585;
  -webkit-filter: opacity(0);
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.noticias-paginacao .noticia .thumb img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 2px;
}

.noticias-paginacao .noticia h2 {
  font-size: 2.375em;
  color: #222;
  font-weight: 700;
  margin-top: 20px;
  line-height: 38px;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.noticias-paginacao .noticia h3 {
  font-size: 0.938rem;
  color: #222;
  font-family: 'Open Sans', sans-serif !important;
  font-weight: 400;
  margin-top: 20px;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.noticias-paginacao .noticia .mais {
  background-color: #fff;
  color: #858585;
  display: inline-block;
  margin: 10px 0px;
  letter-spacing: 1px;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
  border: 1px solid #858585;
  padding: 0px 20px;
  border-radius: 19px;
  text-transform: lowercase;
  font-size: 17px;
}

.noticias-paginacao .noticia .tag {
  display: block;
  font-size: 0.938em;
  color: #40515f;
  margin: 10px 0px;
}

.noticias-paginacao .noticia:hover .thumb::before {
  -webkit-filter: opacity(1);
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.noticias-paginacao .noticia:hover h2 {
  color: grey;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.noticias-paginacao .noticia:hover h3 {
  color: grey;
}

.noticias-paginacao .noticia:hover .mais {
  background: red;
  border-color: red;
  color: #fff;
}

aside.noticias-categorias-listagem ul.menu {
  list-style: none;
  margin-bottom: 27px;
}

aside.noticias-categorias-listagem ul.menu li a {
  border-top: 1px solid #ebe9e9;
  border-bottom: 1px solid #ebe9e9;
  margin-top: -1px;
  padding: 20px;
  font-weight: 700;
  font-size: 1.25rem;
  color: #686566;
  padding-left: 40px;
  background: url('https://epifer.com.br/dev/img/grayarrow.png') 15px center no-repeat;
  background-color: #fff;
  -webkit-transition: all 0.2 ease-out;
  -moz-transition: all 0.2 ease-out;
  transition: all 0.2 ease-out;
}

aside.noticias-categorias-listagem ul.menu li a:hover {
  font-weight: 700;
  background-color: #ebf0fa !important;
  color: #f96a02 !important;
}

aside.noticias-categorias-listagem ul.menu li a.active {
  background: url('https://epifer.com.br/dev/img/arrow.png') 15px center no-repeat #ebf0fa;
  font-weight: 700;
  color: #f96a02;
}

aside.noticia-busca {
  margin-bottom: 20px;
}

aside.noticia-busca form {
  border: 1px #dbdbdb solid;
  border-radius: 25px !important;
  color: #666;
  position: relative;
  overflow: hidden;
}

aside.noticia-busca form input {
  border: none;
  border-radius: 25px !important;
  padding: 0 21px;
  box-shadow: none !important;
  margin: 0px;
  font-weight: 300;
  padding-right: 2.5rem;
  font-size: 1.063rem;
}

aside.noticia-busca form input:focus {
  box-shadow: none !important;
}

aside.noticia-busca form button {
  top: 0;
  right: 0;
  position: absolute;
  margin: 0px;
  outline: 0 !important;
  background: transparent;
  color: #fff !important;
  font-size: 1.2rem;
  padding: 0.58rem 0.7rem;
  background: #dbdbdb;
}

aside.lateral_duvida {
  margin-top: 50px;
}

aside.lateral_duvida .imgphone {
  float: left;
  width: 45px !important;
  top: 15px;
  position: relative;
}

@media screen and (max-width: 768px) {
  aside.lateral_duvida .left-imgphone {
    padding-left: 0px !important;
  }
}

aside.lateral_duvida .left-zap {
  padding-left: 10px;
}

aside.lateral_duvida .lateral-call {
  margin-top: 40px;
}

aside.lateral_duvida .lateral-call .call-box {
  border: 1.5px solid rgba(0, 0, 0, 0);
  background-color: #fff;
  border-radius: 6px;
  padding: 23px 40px 38px;
}

aside.lateral_duvida .lateral-call .call-box.borda2 {
  box-shadow: 2px 3px 20px 6px #dedede;
}

aside.lateral_duvida .lateral-call .call-box h2 {
  color: red !important;
  text-transform: uppercase;
  font-size: 26px;
  margin-bottom: 16px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  aside.lateral_duvida .lateral-call .call-box h2 {
    font-size: 20px !important;
  }
}

aside.lateral_duvida .lateral-call .call-box .contatos .inf {
  float: left;
}

aside.lateral_duvida .lateral-call .call-box .contatos .telefone i {
  color: #a2cc3a !important;
}

aside.lateral_duvida .lateral-call .call-box .contatos .telefone .titulo {
  font-weight: 700;
}

aside.lateral_duvida .lateral-call .call-box .contatos .atendimento .img {
  background: url('https://epifer.com.br/dev/img/telefone.png') center no-repeat;
}

aside.lateral_duvida .lateral-call .call-box .contatos .whatsapp i {
  color: #00d02a;
}

aside.lateral_duvida .lateral-call .call-box .contatos .whatsapp .titulo {
  color: #00d02a;
  font-weight: 600;
}

aside.lateral_duvida .lateral-call .call-box .contatos .whatsapp .img {
  background: url('https://epifer.com.br/dev/img/whatsapp.png') center no-repeat;
}

aside.lateral_duvida .lateral-call .call-box .sv {
  margin-bottom: 15px;
  border-bottom: 1px solid #cad6e4;
  padding-bottom: 15px;
}

aside.lateral_duvida .lateral-call .call-box .sv:last-child {
  margin: 0;
  padding: 0;
  border: 0;
}

aside.lateral_duvida .lateral-call .call-box .sv .img,
aside.lateral_duvida .lateral-call .call-box .sv i {
  float: left;
  margin-right: 13px;
  font-size: 50px;
}

aside.lateral_duvida .lateral-call .call-box .sv .titulo {
  float: left;
  font-size: 19px;
  font-weight: 700;
  color: red;
  line-height: 1.5;
  width: calc(100% - 62px);
}

aside.lateral_duvida .lateral-call .call-box .sv .numero {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  font-size: 24px;
  margin-top: -5.5px;
  color: #47525f;
  font-family: 'Open Sans', sans-serif !important;
  font-weight: 500;
  display: block;
}

@media screen and (max-width: 768px) {
  aside.lateral_duvida .lateral-call .call-box .sv .numero {
    font-size: 15px !important;
    margin-bottom: 15px;
  }
}

aside.lateral_duvida .lateral-call .call-box .sv.redes .titulo {
  margin-left: 47px;
}

aside.lateral_duvida .lateral-call .call-box .sv.redes a {
  float: none;
  margin-left: -47px;
  display: block;
  line-height: 36px;
  margin-bottom: 14px;
}

aside.lateral_duvida .lateral-call .call-box .sv.redes a i {
  font-size: 36px;
  color: #aaa;
}

aside.lateral_duvida .lateral-call .call-box .sv a:hover .numero {
  color: #222;
}

aside.lateral_duvida .lateral-call .call-box .sv.whatsapp i {
  color: #00d02a;
  font-size: 50px;
}

aside.lateral_duvida .lateral-call .call-box .sv.whatsapp .titulo {
  color: #00d02a;
  font-weight: 700;
  font-size: 17px;
}

aside.lateral_duvida h2 {
  text-transform: uppercase;
  font-size: 1.6rem;
  color: #00d02a;
  line-height: 1.2;
  padding-top: 10px !important;
  padding-bottom: 3px;
  font-weight: 700;
  text-align: center;
}

aside.lateral_duvida h2:first-child {
  padding-top: 0px;
  margin-bottom: 11px;
}

@media screen and (max-width: 768px) {
  aside.lateral_duvida h2:first-child {
    font-size: 18px;
  }
}

aside.lateral_duvida h3 {
  font-size: 0.8rem;
  line-height: 1.2;
  color: black;
  text-align: center;
  margin-bottom: 38px;
}

aside.lateral_duvida .mtop {
  margin-top: 80px;
}

aside.lateral_duvida .formulario {
  position: relative;
}

aside.lateral_duvida .formulario form {
  padding: 2rem 0.9rem 2rem;
  margin-bottom: 1rem;
  margin-top: 40px;
  border: 1.5px solid #fff;
  background-color: #fff;
  border-radius: 15px;
}

aside.lateral_duvida .formulario form.borda2 {
  box-shadow: 2px 3px 20px 6px #dedede;
}

aside.lateral_duvida .formulario form .form-floating-label {
  position: relative;
  border: 2px solid #bfbcbc;
  border-radius: 10px;
  margin-bottom: 15px;
}

aside.lateral_duvida .formulario form .form-floating-label label {
  color: #a4a8ab;
  font-size: 1em;
  position: absolute;
  pointer-events: none;
  left: 16px;
  top: 7px !important;
  transition: all 0.2s ease-in;
  font-weight: 400;
  text-transform: none;
}

aside.lateral_duvida .formulario form .form-floating-label textarea ~ label {
  top: 0px;
  font-size: 1em;
  font-weight: 400;
  left: 12px !important;
}

aside.lateral_duvida .formulario form .form-floating-label input:focus ~ label,
aside.lateral_duvida
  .formulario
  form
  .form-floating-label
  input:disabled[value]
  ~ label,
aside.lateral_duvida
  .formulario
  form
  .form-floating-label.has-value
  input
  ~ label {
  top: 0px !important;
  font-size: 14px;
  font-weight: 400;
  left: 12px !important;
}

aside.lateral_duvida
  .formulario
  form
  .form-floating-label
  textarea:focus
  ~ label,
aside.lateral_duvida
  .formulario
  form
  .form-floating-label.has-value
  textarea
  ~ label {
  top: 0px !important;
  font-size: 14px;
  color: #a4a8ab;
  font-weight: 400;
  left: 12px !important;
}

aside.lateral_duvida .formulario form input,
aside.lateral_duvida .formulario form textarea,
aside.lateral_duvida .formulario form select {
  margin: 0;
  border: 0px;
  border-radius: 0px !important;
  font-weight: 400 !important;
  background: transparent !important;
  padding: 21px 11px 4px 8px;
  color: #a4a8ab;
  height: auto;
}

aside.lateral_duvida .formulario form select {
  padding-bottom: 16px !important;
}

aside.lateral_duvida .formulario form input:focus,
aside.lateral_duvida .formulario form select:focus,
aside.lateral_duvida .formulario form textarea:focus {
  border-radius: 0px !important;
  box-shadow: none !important;
  color: #40515f;
  padding-left: 10px;
}

aside.lateral_duvida .formulario form button.button,
aside.lateral_duvida .formulario form a.button {
  text-transform: uppercase;
  width: 100%;
  font-size: 1.1rem;
  padding: 0.75rem 1rem;
  display: block;
  font-weight: 700;
  margin: 0px;
  background: #0ab726;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  border-radius: 70px !important;
  color: #fff !important;
  border: 2px solid #0ab726 !important;
  position: relative;
}

aside.lateral_duvida .formulario form button.button.bloquear,
aside.lateral_duvida .formulario form a.button.bloquear {
  pointer-events: none;
  opacity: 0.5 !important;
}

@media screen and (min-width: 992px) {
  aside.lateral_duvida .formulario form button.button.cta-mobile,
  aside.lateral_duvida .formulario form a.button.cta-mobile {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  aside.lateral_duvida .formulario form button.button.cta-desktop,
  aside.lateral_duvida .formulario form a.button.cta-desktop {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  aside.lateral_duvida .formulario form button.button,
  aside.lateral_duvida .formulario form a.button {
    font-size: 0.9rem;
  }
}

aside.lateral_duvida .formulario form button.button i,
aside.lateral_duvida .formulario form a.button i {
  font-size: 34px;
  font-weight: 100;
  position: absolute;
  top: 2px;
  right: 10px;
}

aside.lateral_duvida .formulario form button.button:hover,
aside.lateral_duvida .formulario form a.button:hover {
  background-color: #fff !important;
  border-color: #0ab726 !important;
  color: #0ab726 !important;
}

aside.lateral_duvida .formulario form small {
  color: #bbb;
  font-weight: 700;
}

aside.lateral_duvida .formulario::before {
  height: 37px !important;
  width: 80px;
  align-self: center;
  position: absolute;
  left: calc(50% - 40px);
  margin-top: -35px;
  border-radius: 100px 100px 0px 0px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  border-right: 2px solid #fff;
  z-index: 2;
  background-color: #fff;
}

aside.lateral_duvida .formulario.borda2::before {
  box-shadow: 1px -4px 20px 0px #dedede;
}

aside.lateral_duvida .formulario:before {
  content: '';
  align-items: center !important;
  text-align: center;
  padding-top: 8px;
}

aside.lateral_duvida .formulario:after {
  content: '\f078';
  font-family: 'Font Awesome 5 Free';
  font-size: 28px;
  text-align: center;
  padding-top: 4px;
  position: absolute;
  z-index: 10;
  top: -25px;
  left: calc(50% - 30px);
  border: 6px solid #00d02a;
  color: #00d02a;
  border-radius: 100px;
  width: 60px;
  height: 60px;
  font-weight: 900;
  background-color: white;
}

aside.lateral_duvida_produtos .inputLeft {
  padding-left: 3px !important;
}

aside.lateral_duvida_produtos .inputRight {
  padding-right: 3px !important;
}

@media screen and (max-width: 768px) {
  aside.lateral_duvida_produtos .inputLeft {
    padding-left: 10px !important;
  }

  aside.lateral_duvida_produtos .inputRight {
    padding-right: 10px !important;
  }
}

aside.lateral_duvida_produtos .imgphone {
  float: left;
  width: 35px !important;
  position: relative;
}

aside.lateral_duvida_produtos .left-zap {
  padding-left: 10px;
}

aside.lateral_duvida_produtos .lateral-call .call-box {
  border: 1.5px solid #bbb;
  border-radius: 6px;
  padding: 23px 20px 23px;
}

aside.lateral_duvida_produtos .lateral-call .call-box h2 {
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 700;
}

aside.lateral_duvida_produtos .lateral-call .call-box .contatos .inf {
  float: left;
}

aside.lateral_duvida_produtos .lateral-call .call-box .contatos .mleft {
  margin-left: 12%;
}

aside.lateral_duvida_produtos .lateral-call .call-box .contatos .mleft2 {
  margin-left: 10%;
}

aside.lateral_duvida_produtos .lateral-call .call-box .contatos .telefone i {
  color: #a2cc3a !important;
}

aside.lateral_duvida_produtos
  .lateral-call
  .call-box
  .contatos
  .telefone
  .titulo {
  font-weight: 700;
}

aside.lateral_duvida_produtos
  .lateral-call
  .call-box
  .contatos
  .atendimento
  .img {
  background: url('https://epifer.com.br/dev/img/telefone.png') center no-repeat;
}

aside.lateral_duvida_produtos .lateral-call .call-box .contatos .whatsapp i {
  color: #00d02a;
}

aside.lateral_duvida_produtos
  .lateral-call
  .call-box
  .contatos
  .whatsapp
  .titulo {
  color: #00d02a;
  font-weight: 600;
}

aside.lateral_duvida_produtos .lateral-call .call-box .contatos .whatsapp .img {
  background: url('https://epifer.com.br/dev/img/whatsapp.png') center no-repeat;
}

aside.lateral_duvida_produtos .lateral-call .call-box .sv {
  margin-bottom: 15px;
  border-bottom: 1px solid #bbb;
  padding-bottom: 25px;
}

aside.lateral_duvida_produtos .lateral-call .call-box .sv:last-child {
  margin: 0;
  padding: 0;
  border: 0;
}

aside.lateral_duvida_produtos .lateral-call .call-box .sv .img,
aside.lateral_duvida_produtos .lateral-call .call-box .sv i {
  float: left;
  margin-right: 13px;
  font-size: 50px;
}

aside.lateral_duvida_produtos .lateral-call .call-box .sv .titulo {
  float: left;
  font-size: 15px;
  font-weight: 700;
  color: #424242;
  line-height: 1.5;
  width: calc(100% - 62px);
}

aside.lateral_duvida_produtos .lateral-call .call-box .sv .numero {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  font-size: 20px;
  margin-top: -5.5px;
  color: #47525f;
  font-family: 'Open Sans', sans-serif !important;
  font-weight: 500;
  display: block;
}

aside.lateral_duvida_produtos .lateral-call .call-box .sv.redes .titulo {
  margin-left: 47px;
}

aside.lateral_duvida_produtos .lateral-call .call-box .sv.redes a {
  float: none;
  margin-left: -47px;
  display: block;
  line-height: 36px;
  margin-bottom: 14px;
}

aside.lateral_duvida_produtos .lateral-call .call-box .sv.redes a i {
  font-size: 36px;
  color: #aaa;
}

aside.lateral_duvida_produtos .lateral-call .call-box .sv a:hover .numero {
  color: #969696;
}

aside.lateral_duvida_produtos .lateral-call .call-box .sv.whatsapp i {
  color: #00d02a;
  font-size: 40px;
}

aside.lateral_duvida_produtos .lateral-call .call-box .sv.whatsapp .titulo {
  color: #00d02a;
  font-weight: 700;
  font-size: 14px;
}

aside.lateral_duvida_produtos h2 {
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 20px;
  color: #bbb;
  line-height: 1.2;
  padding: 1rem 0px;
  padding-bottom: 3px;
  font-weight: 700;
  text-align: center;
}

aside.lateral_duvida_produtos h2:first-child {
  padding-top: 0px;
  margin-bottom: 11px;
}

@media screen and (max-width: 768px) {
  aside.lateral_duvida_produtos h2:first-child {
    font-size: 18px;
  }
}

aside.lateral_duvida_produtos h3 {
  font-size: 0.8rem;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 38px;
}

aside.lateral_duvida_produtos .mtop {
  margin-top: 80px;
}

aside.lateral_duvida_produtos .formulario {
  position: relative;
}

aside.lateral_duvida_produtos .formulario form {
  padding: 2rem 0.9rem 2rem;
  margin-bottom: 1rem;
  margin-top: 40px;
  border: 1.5px solid #bbb;
  border-radius: 10px;
}

aside.lateral_duvida_produtos .formulario form .form-floating-label {
  position: relative;
  border: 2px solid #bfbcbc;
  border-radius: 10px;
  margin-bottom: 10px;
}

aside.lateral_duvida_produtos .formulario form .form-floating-label label {
  color: #a4a8ab;
  font-size: 1em;
  position: absolute;
  pointer-events: none;
  left: 16px;
  top: 7px !important;
  transition: all 0.2s ease-in;
  font-weight: 400;
  text-transform: none;
}

aside.lateral_duvida_produtos
  .formulario
  form
  .form-floating-label
  textarea
  ~ label {
  top: 0px;
  font-size: 1em;
  font-weight: 400;
  left: 12px !important;
}

aside.lateral_duvida_produtos
  .formulario
  form
  .form-floating-label
  input:focus
  ~ label,
aside.lateral_duvida_produtos
  .formulario
  form
  .form-floating-label
  input:disabled[value]
  ~ label,
aside.lateral_duvida_produtos
  .formulario
  form
  .form-floating-label.has-value
  input
  ~ label {
  top: 0px !important;
  font-size: 14px;
  font-weight: 400;
  left: 12px !important;
}

aside.lateral_duvida_produtos
  .formulario
  form
  .form-floating-label
  textarea:focus
  ~ label,
aside.lateral_duvida_produtos
  .formulario
  form
  .form-floating-label.has-value
  textarea
  ~ label {
  top: 0px !important;
  font-size: 14px;
  color: #a4a8ab;
  font-weight: 400;
  left: 12px !important;
}

aside.lateral_duvida_produtos .formulario form input,
aside.lateral_duvida_produtos .formulario form textarea,
aside.lateral_duvida_produtos .formulario form select {
  margin: 0;
  border: 0px;
  border-bottom: 1px #eae8e8 solid;
  border-radius: 0px !important;
  font-weight: 400 !important;
  background: transparent !important;
  padding: 21px 11px 4px 8px;
  color: #a4a8ab;
  height: auto;
}

aside.lateral_duvida_produtos .formulario form select {
  padding-bottom: 16px !important;
}

aside.lateral_duvida_produtos .formulario form input:focus,
aside.lateral_duvida_produtos .formulario form select:focus,
aside.lateral_duvida_produtos .formulario form textarea:focus {
  border-radius: 0px !important;
  box-shadow: none !important;
  color: #40515f;
  padding-left: 10px;
}

aside.lateral_duvida_produtos .formulario form button.button {
  text-transform: uppercase;
  width: 100%;
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  display: block;
  font-weight: 700;
  margin: 0px;
  background: #bbb;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  border-radius: 70px !important;
}

aside.lateral_duvida_produtos .formulario form button.button:hover {
  background: #767676;
}

aside.lateral_duvida_produtos .formulario form small {
  color: #bbb;
  font-weight: 700;
}

aside.lateral_duvida_produtos .formulario::before {
  height: 37px !important;
  width: 80px;
  align-self: center;
  position: absolute;
  left: calc(50% - 40px);
  margin-top: -35px;
  border-radius: 100px 100px 0px 0px;
  border-top: 2px solid #bbb;
  border-left: 2px solid #bbb;
  border-right: 2px solid #bbb;
  z-index: 2;
  background-color: white;
}

aside.lateral_duvida_produtos .formulario:before {
  content: url('https://epifer.com.br/dev/img/flecha_contato.png');
  align-items: center !important;
  text-align: center;
  padding-top: 8px;
}

section.politica .descricao {
  font-size: 1rem !important;
  color: black !important;
  padding: 50px 0px 50px;
}

section.zapbutton {
  background-color: #25d366;
  width: 70px;
  height: 70px;
  position: fixed;
  z-index: 13;
  bottom: 70px;
  right: 20px;
  border-radius: 75px;
  box-shadow: 3px 1px 15px #7b7b7b;
}

section.zapbutton i.fab.fa-whatsapp {
  color: white;
  font-size: 55px;
  margin-top: 6px;
  margin-left: 11px;
}

@media screen and (max-width: 768px) {
  section.zapbutton {
    bottom: 20px !important;
  }
}

section.destaque {
  padding: 50px 0px;
}

section.destaque .texto {
  padding: 20px 0px;
}

section.destaque .texto .destaque_texto {
  font-size: 20px;
  font-weight: 600;
  position: relative;
}

@media screen and (max-width: 768px) {
  section.destaque .texto .destaque_texto {
    text-align: center;
    line-height: 1.3;
    margin-bottom: 10px;
  }
}

section.destaque .texto .destaque_texto::after {
  content: '';
  height: 5px;
  width: 22%;
  background-color: #f96a02;
  position: absolute;
  display: inline-block;
  top: 15px;
  margin-left: 10px;
}

@media screen and (max-width: 768px) {
  section.destaque .texto .destaque_texto::after {
    display: none;
  }
}

section.destaque .texto .destaque_texto span.destaque_saibamais {
  float: right;
  background-color: #f96a02;
  padding: 0px 33px;
  color: white;
  font-size: 20px;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  section.destaque .texto .destaque_texto span.destaque_saibamais {
    width: 100%;
    display: table;
  }
}

section.destaque .destaques .img {
  position: relative;
  height: 200px;
  width: 100%;
}

section.destaque .destaques .img:hover .lente {
  opacity: 1;
}

section.destaque .destaques .img .lente {
  opacity: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  overflow: hidden;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

section.destaque .destaques .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

section.destaque .destaques .titulo {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: black;
  padding: 10px 0px;
}

section.destaque i.fas.fa-arrow-alt-circle-left {
  color: rgba(0, 0, 0, 0.49);
  font-size: 42px;
  position: absolute;
  top: calc(50% - 42px);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

section.destaque i.fas.fa-arrow-alt-circle-left:hover {
  color: rgba(0, 0, 0, 0.8);
}

section.destaque i.fas.fa-arrow-alt-circle-right {
  color: rgba(0, 0, 0, 0.49);
  font-size: 42px;
  position: absolute;
  top: calc(50% - 42px);
  right: 0px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

section.destaque i.fas.fa-arrow-alt-circle-right:hover {
  color: rgba(0, 0, 0, 0.8);
}

section.barra_fixa .redesTop {
  margin-top: -8px;
}

section.barra_fixa .topoRedes1 {
  margin-right: 10px !important;
}

section.barra_fixa .back-to-top {
  position: fixed;
  bottom: 2rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
  right: 7.5rem;
  background: red;
  opacity: 0;
  color: #fff;
  z-index: 10;
  border-radius: 60px !important;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

section.barra_fixa .back-to-top a,
section.barra_fixa .back-to-top a:link,
section.barra_fixa .back-to-top a:hover,
section.barra_fixa .back-to-top a:active,
section.barra_fixa .back-to-top a:visited {
  color: #fff;
  display: block;
  padding: 0.7rem 1rem;
}

section.barra_fixa .back-to-top.show {
  opacity: 1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

section.barra_fixa .back-to-top:active {
  transition: All 0.15s ease;
  -webkit-transition: All 0.15s ease;
  -moz-transition: All 0.15s ease;
  -o-transition: All 0.15s ease;
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  background: #fff;
  color: #aaa !important;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.55);
}

section.barra_fixa .back-to-top:active a,
section.barra_fixa .back-to-top:active a:link,
section.barra_fixa .back-to-top:active a:hover,
section.barra_fixa .back-to-top:active a:active,
section.barra_fixa .back-to-top:active a:visited {
  color: #aaa;
}

section.barra_fixa .back-to-top.ativo {
  transition: All 0.15s ease;
  -webkit-transition: All 0.15s ease;
  -moz-transition: All 0.15s ease;
  -o-transition: All 0.15s ease;
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  background: #fff;
  color: #aaa !important;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.55);
}

section.barra_fixa .back-to-top.ativo a,
section.barra_fixa .back-to-top.ativo a:link,
section.barra_fixa .back-to-top.ativo a:hover,
section.barra_fixa .back-to-top.ativo a:active,
section.barra_fixa .back-to-top.ativo a:visited {
  color: #aaa;
}

section.barra_fixa .fixed-bar {
  padding-top: 11px;
  background: #fff;
  height: 60px;
  width: 100%;
  position: fixed;
  bottom: -60px;
  z-index: 10;
  left: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

section.barra_fixa .fixed-bar.sticky {
  position: fixed;
  z-index: 9;
  bottom: 0px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

section.barra_fixa .fixed-bar .item {
  float: left;
  width: 45%;
  position: relative;
}

section.barra_fixa .fixed-bar .item a:hover {
  text-decoration: underline;
}

section.barra_fixa .fixed-bar .item h2 {
  font-size: 12px;
  color: #00193c;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
}

section.barra_fixa .fixed-bar .item .item-text {
  color: #00193c;
  display: block;
  font-size: 21px;
  line-height: 18px;
  font-weight: 100;
}

section.barra_fixa .fixed-bar .item .item-text.zap {
  color: #00193c !important;
}

section.barra_fixa .fixed-bar .item.atendimento h2 {
  font-size: 11px;
}

section.barra_fixa .fixed-bar .item.atendimento .item-text {
  margin-top: 0;
  font-size: 18px;
}

section.barra_fixa .fixed-bar .item.telefone {
  padding-left: 37px;
}

section.barra_fixa .fixed-bar .item.telefone:before {
  content: '\f098';
  font-family: 'Font Awesome 5 Free';
  display: inline-block;
  color: #00cd00;
  position: absolute;
  font-weight: 900;
  font-size: 35px;
  top: -12px;
  left: 0;
}

section.barra_fixa .fixed-bar .item.whatsapp {
  padding-left: 37px;
}

section.barra_fixa .fixed-bar .item.whatsapp:before {
  content: '\f232';
  font-family: 'Font Awesome 5 Brands';
  display: inline-block;
  color: #00cd00;
  position: absolute;
  font-weight: 100;
  font-size: 35px;
  top: -12px;
  left: 0;
}

section.barra_fixa .fixed-bar .item.whatsapp h2 {
  color: #00cd00;
}

@media screen and (max-width: 768px) {
  section.barra_fixa .fixed-bar .item {
    position: relative;
    margin-bottom: 15px;
    margin-top: 20px;
    text-align: center;
    width: 50%;
  }

  section.barra_fixa .fixed-bar .item:first-child {
    float: none;
    width: 100%;
    text-align: center;
  }
}

section.barra_fixa .fixed-bar .acoes {
  float: right;
}

section.barra_fixa .fixed-bar .acoes .acao {
  text-transform: uppercase;
  padding: 7px 19px;
  font-weight: 600;
  font-size: 13px;
  display: inline-block;
  border-radius: 17px;
  color: #fff;
  text-align: left;
  letter-spacing: 0.8px;
  font-family: 'Open Sans', sans-serif !important;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1280px) {
  section.barra_fixa .fixed-bar .acoes .acao {
    padding: 7px 15px 7px 17px;
  }
}

section.barra_fixa .fixed-bar .acoes .acao.primeira {
  margin-right: 9px;
  background: center no-repeat #fff !important;
  border: 2px solid #f96a02 !important;
  color: #f96a02 !important;
  font-weight: 700 !important;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

section.barra_fixa .fixed-bar .acoes .acao.primeira:hover {
  color: #fff !important;
  background-color: #f96a02 !important;
  border-color: #f96a02 !important;
}

section.barra_fixa .fixed-bar .acoes .acao.segunda {
  background: center no-repeat #fff !important;
  border: 2px solid red !important;
  color: red !important;
  font-weight: 700 !important;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

section.barra_fixa .fixed-bar .acoes .acao.segunda:hover {
  color: #fff !important;
  background-color: red !important;
  border-color: red !important;
}

@media screen and (max-width: 1280px) {
  section.barra_fixa .fixed-bar .acoes .acao {
    float: left;
    width: calc(50% - 5px);
    background-image: none !important;
    font-size: 12px;
    padding: 11px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 8px;
  }

  section.barra_fixa .fixed-bar .acoes .acao:first-child {
    margin-right: 5px;
  }
}

section.barra_fixa .fixed-bar .acoes .acao:hover {
  filter: opacity(70%);
}

section.cabecario {
  position: relative;
}

@media screen and (min-width: 769px) {
  section.cabecario .menuMobile {
    display: none;
  }
}

section.cabecario .menuMobile i.botaoMobile.fas.fa-bars {
  font-size: 50px;
  position: absolute;
  top: 0px;
  right: 0px;
  color: white;
  padding: 17px;
}

section.cabecario .menuMobile .listagemMenu {
  position: fixed;
  top: 0px;
  right: 100%;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  overflow-y: auto;
  z-index: 99;
  background-color: #f96a02;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

section.cabecario .menuMobile .listagemMenu.aberto {
  right: 0px;
}

section.cabecario .menuMobile .listagemMenu i.fas.fa-times {
  position: absolute;
  top: 0px;
  right: 0px;
  color: white;
  padding: 9px;
  font-size: 30px;
}

section.cabecario .menuMobile .listagemMenu .menuSite ul li {
  display: grid;
  border-bottom: 1px solid white;
  font-size: 25px;
}

section.cabecario div.separador_top {
  background-color: #2e3094;
  padding: 35px;
}

section.cabecario div.separador_top .atendimentoTop,
section.cabecario div.separador_top .horario {
  float: right;
}

section.cabecario div.separador_top .atendimentoTop .icone,
section.cabecario div.separador_top .horario .icone {
  float: left;
}

@media screen and (max-width: 768px) {
  section.cabecario div.separador_top .atendimentoTop,
  section.cabecario div.separador_top .horario {
    float: unset;
    text-align: center;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 768px) {
  section.cabecario div.separador_top .redesSociais {
    text-align: center;
  }
}

section.cabecario div.separador_top .horario {
  color: white;
  font-size: 15px;
  font-weight: 700;
  text-align: right;
  padding: 0px 30px;
  line-height: 1.2;
}

section.cabecario div.separador_top .texto {
  margin-left: 15px;
  color: white;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  padding: 0px 30px;
}

section.cabecario div.separador_top .texto small {
  font-size: 14px;
  font-weight: 300;
}

section.cabecario div.separador_top img.fb {
  margin-right: 10px;
}

section.cabecario div.separador_middle {
  background-color: #fff;
  padding: 20px 0px;
}

section.cabecario div.separador_middle .campoBusca {
  float: left;
  margin-top: 13px;
  width: 400px;
  position: relative;
}

section.cabecario div.separador_middle .campoBusca button.pesquisarPorduto {
  background-color: transparent;
  border: unset;
  color: #f96a02;
  position: absolute;
  top: 10px;
  right: 0px;
}

section.cabecario div.separador_middle .campoBusca input.inputBusca {
  background-color: transparent;
  border-bottom: 1px solid #2e3094;
  margin-left: 30px;
  color: white;
}

section.cabecario
  div.separador_middle
  .campoBusca
  input.inputBusca::placeholder {
  color: #2e3094;
  text-align: left;
  leading-trim: both;
  text-edge: cap;
  font-family: 'Open Sans';
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 38.4px;
}

@media screen and (max-width: 768px) {
  section.cabecario div.separador_middle .campoBusca {
    width: 100%;
  }

  section.cabecario div.separador_middle .campoBusca input.inputBusca {
    margin-left: 20px;
    width: 85%;
  }

  section.cabecario div.separador_middle .campoBusca button.pesquisarPorduto {
    right: 15%;
  }
}

section.cabecario div.separador_middle .logoHome {
  float: left;
}

@media screen and (max-width: 768px) {
  section.cabecario div.separador_middle .logoHome {
    width: 100%;
    text-align: center;
  }
}

section.cabecario div.separador_middle .CabecarioButtons {
  margin-top: 25px;
  float: right;
}

@media screen and (max-width: 768px) {
  section.cabecario div.separador_middle .CabecarioButtons {
    clear: both;
    float: unset;
    padding: 10px 0px 0px 0px;
    text-align: center;
  }
}

section.cabecario div.separador_middle .CabecarioButtons a {
  border: 2px solid;
  border-radius: 20px;
  background-color: transparent;
  color: white;
  padding: 7px 15px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: 'Open Sans';
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 38.4px; /* 240% */
}
section.cabecario div.separador_middle .CabecarioButtons a.primeiro {
  color: #2e3094;
}
section.cabecario div.separador_middle .CabecarioButtons a.segundo {
  color: #f55c23;
}
section.cabecario div.separador_middle .CabecarioButtons a.primeiro {
  border-color: #2e3094;
  margin-right: 35px;
}

section.cabecario div.separador_middle .CabecarioButtons a.primeiro:hover {
  background-color: #2e3094;
  color: #fff;
}

section.cabecario div.separador_middle .CabecarioButtons a.segundo {
  border-color: #f55c23;
}

section.cabecario div.separador_middle .CabecarioButtons a.segundo:hover {
  background-color: #f55c23;
  color: #fff;
}

@media screen and (max-width: 768px) {
  section.cabecario div.separador_middle .CabecarioButtons a {
    font-size: 12px;
  }

  section.cabecario div.separador_middle .CabecarioButtons a.primeiro {
    margin-right: unset;
  }
}

section.banner .owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: -40px;
  position: absolute;
  left: 49%;
}

section.menuSite {
  background-color: #2e3094;
  padding: 20px 0px;
}

section.menuSite ul {
  text-align: center;
  padding: 0px !important;
  margin: 0px !important;
}

section.menuSite ul a {
  font-size: 15px;
  font-weight: 700;
  color: white;
}

section.menuSite ul li {
  display: inline-block;
  padding: 0px 35px;
  font-size: 17px;
  font-weight: 600;
  position: relative;
  text-transform: uppercase;
}

section.menuSite ul li::after {
  position: absolute;
  bottom: -7px;
  left: 35px;
  content: '';
  width: 0px;
  height: 3px;
  background-color: white;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

section.menuSite ul li:hover::after {
  width: 50px;
}

section.separadorHome {
  padding: 20px;
  background-color: #2e3094;
}

section.separadorHome .texto {
  position: relative;
  font-size: 15px;
  font-weight: 700;
  color: white;
  line-height: 1.3;
  text-transform: uppercase;
}
section.separadorHome .texto.a4 {
  text-transform: unset;
}
@media screen and (max-width: 768px) {
  section.separadorHome .texto {
    padding: 10px 0px;
    text-align: center;
  }
}

section.separadorHome .texto::after {
  position: absolute;
  top: 0px;
  left: -50px;
}

@media screen and (max-width: 768px) {
  section.separadorHome .texto::after {
    left: -4%;
  }
}

section.separadorHome .faixa-header .faixa {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
section.separadorHome .icon_1 .faixa::before {
  content: url('https://epifer.com.br/dev/img/../../dev/img/icons_separadorbanner/1.png');
}

section.separadorHome .icon_2 .faixa::before {
  content: url('https://epifer.com.br/dev/img/../../dev/img/icons_separadorbanner/2.png');
}

section.separadorHome .icon_3 .faixa::before {
  content: url('https://epifer.com.br/dev/img/../../dev/img/icons_separadorbanner/3.png');
}

section.separadorHome .icon_4 .faixa::before {
  content: url('https://epifer.com.br/dev/img/../../dev/img/icons_separadorbanner/4_1.png');
}

section.separadorHome .alinhamentobndes img.bndes {
  position: absolute;
  margin-top: -23px;
  height: 100px;
}

@media screen and (max-width: 768px) {
  section.separadorHome .alinhamentobndes img.bndes {
    position: unset;
    margin-top: unset;
  }
}

@media screen and (max-width: 768px) {
  section.separadorHome .alinhamentobndes {
    text-align: center;
  }
}

section.destaqueProdutos .titulo {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  padding-top: 30px;
}

section.destaqueProdutos .texto {
  padding: 20px 0px;
}

section.destaqueProdutos .texto .destaque_texto {
  font-size: 20px;
  font-weight: 600;
  position: relative;
  color: #f96a02;
}

@media screen and (max-width: 768px) {
  section.destaqueProdutos .texto .destaque_texto {
    text-align: center;
  }
}

section.destaqueProdutos .texto .destaque_texto::after {
  content: '';
  height: 5px;
  width: 71%;
  background-color: #f96a02;
  position: absolute;
  display: inline-block;
  top: 15px;
  margin-left: 10px;
}

@media screen and (max-width: 768px) {
  section.destaqueProdutos .texto .destaque_texto::after {
    display: none;
  }
}

section.destaqueProdutos .texto .destaque_texto span.destaque_saibamais {
  float: right;
  background-color: #f96a02;
  padding: 0px 33px;
  color: white;
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  section.destaqueProdutos .texto .destaque_texto span.destaque_saibamais {
    width: 100%;
    display: table;
    text-align: center;
    margin-bottom: 10px;
  }
}

section.destaqueProdutos .boxProduto {
  border: 1px solid #d0d0d0;
  padding: 10px;
  margin-bottom: 25px;
}

section.destaqueProdutos .boxProduto .titulo {
  font-size: 15px;
  font-weight: 700;
  color: black;
  text-align: center;
  text-transform: uppercase;
  height: 50px;
  overflow: hidden;
}

section.destaqueProdutos .boxProduto .imagem {
  height: 170px;
  width: 100%;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

section.destaqueProdutos .boxProduto .imagem:hover img {
  filter: opacity(0.7);
}

section.destaqueProdutos .boxProduto .imagem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

section.destaqueProdutos .boxProduto .botoes a {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 5px 0px;
  border-radius: 5px;
  border: 2px solid;
  font-size: 14px;
  font-weight: 700;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

section.destaqueProdutos .boxProduto .botoes a.bt1 {
  border-color: #f96a02;
  color: #f96a02;
  margin-top: 10px;
  margin-bottom: 10px;
}

section.destaqueProdutos .boxProduto .botoes a.bt1:hover {
  background-color: #f96a02;
  color: white;
}

section.destaqueProdutos .boxProduto .botoes a.bt2 {
  background-color: red;
  border-color: red;
  color: white;
  margin-bottom: 10px;
}

section.destaqueProdutos .boxProduto .botoes a.bt2:hover {
  background-color: white;
  color: red;
}

section.painelcontato {
  position: relative;
  padding: 30px 0px;
  background-size: cover;
  background-attachment: fixed;
}

section.painelcontato .imgBottons {
  margin-top: -143px;
}

section.painelcontato .imgBottons .imgs {
  height: 143px;
  display: table-cell;
  vertical-align: middle;
}

section.painelcontato .imgBottons .imgs img {
  max-height: 143px;
}

section.painelcontato .conteudo {
  padding: 20px 20px;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 400;
  color: white;
}

@media screen and (min-width: 768px) {
  section.painelcontato .conteudo {
    margin-top: 80px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
  }
}

section.painelcontato .conteudo .titulo h2 {
  font-size: 32px;
  padding: 30px 0px;
  text-align: center;
}

section.painelcontato .conteudo a {
  color: white !important;
}

section.painelcontato .conteudo a:hover {
  text-decoration: underline;
}

section.painelcontato .conteudo strong {
  font-size: 27px;
  font-weight: 700;
}

section.painelcontato aside.lateral_duvida .formulario form.borda2 {
  box-shadow: unset !important;
}

section.painelcontato aside.lateral_duvida .formulario.borda2::before {
  box-shadow: unset !important;
}

section.fornecedores {
  padding: 50px 0px;
  background-color: #f9f9f9;
}

section.fornecedores .texto {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  padding: 30px 5px;
  line-height: 1.3;
}

section.fornecedores .destaques .img {
  position: relative;
  height: 150px;
  width: 100%;
}

section.fornecedores .destaques .img:hover .lente {
  opacity: 1;
}

section.fornecedores .destaques .img .lente {
  opacity: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  overflow: hidden;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

section.fornecedores .destaques .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

section.fornecedores i.fas.fa-arrow-alt-circle-left {
  color: rgba(0, 0, 0, 0.49);
  font-size: 42px;
  position: absolute;
  top: calc(50% - 42px);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

section.fornecedores i.fas.fa-arrow-alt-circle-left:hover {
  color: rgba(0, 0, 0, 0.8);
}

section.fornecedores i.fas.fa-arrow-alt-circle-right {
  color: rgba(0, 0, 0, 0.49);
  font-size: 42px;
  position: absolute;
  top: calc(50% - 42px);
  right: 0px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

section.fornecedores i.fas.fa-arrow-alt-circle-right:hover {
  color: rgba(0, 0, 0, 0.8);
}

section.produtosIndex {
  margin-bottom: 50px;
}

section.produtosIndex .titlePage {
  font-size: 35px;
  font-weight: 700;
  width: 100%;
  color: #f96a02;
  border-left: 5px solid;
  padding-left: 20px;
}

@media screen and (max-width: 768px) {
  section.produtosIndex .titlePage.mobile {
    margin-left: 10px;
  }

  section.produtosIndex .titlePage.deskTop {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  section.produtosIndex .titlePage.mobile {
    display: none;
  }

  section.produtosIndex .titlePage.deskTop {
    margin-left: 15px;
  }
}

@media screen and (max-width: 768px) {
  section.produtosIndex .listagemCategorias .ocultar-mobile {
    max-height: 0px;
    display: none;
    overflow: hidden;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
  }

  section.produtosIndex .listagemCategorias .ocultar-mobile.abrir {
    max-height: 600px;
    display: inherit;
    overflow: auto;
  }
}

section.produtosIndex .listagemCategorias ul.principal {
  margin-left: auto;
  border-left: 1px solid #e6edf5;
  border-right: 1px solid #e6edf5;
  border-bottom: 1px solid #e6edf5;
}

section.produtosIndex .listagemCategorias ul.subcategorias {
  background-color: #e5e5e5;
  margin-left: unset;
  padding: 0px 40px;
}

section.produtosIndex .listagemCategorias ul li {
  cursor: pointer;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

section.produtosIndex .listagemCategorias ul li.principal {
  position: relative;
  font-size: 15px;
  font-weight: 700;
  padding: 10px 16px;
  border-top: 1px solid #e6edf5;
  list-style: none;
  text-transform: uppercase;
  color: black;
}

section.produtosIndex .listagemCategorias ul li.principal i {
  color: #3f689e;
  float: right;
}

section.produtosIndex .listagemCategorias ul li.subcategorias {
  background-color: #e5e5e5;
  position: relative;
  font-size: 13px;
  font-weight: 700;
  padding: 2px 0px;
  color: black;
}

section.produtosIndex .listagemCategorias ul li:hover {
  background-color: #e6edf5;
}

section.produtosIndex .listagemCategorias ul li.ver-todas-categorias-mobile {
  border-top: 1px solid #e6edf5;
  font-size: 15px;
  font-weight: 700;
  padding: 10px 16px;
  list-style: none;
}

@media screen and (min-width: 769px) {
  section.produtosIndex .listagemCategorias ul li.ver-todas-categorias-mobile {
    display: none;
  }
}

section.produtosIndex .listagemCategorias ul li.ver-todas-categorias-mobile i {
  float: right;
}

section.produtosIndex
  .listagemCategorias
  ul
  li.ver-todas-categorias-mobile.vertodas {
  border: 1px solid #f96a02 !important;
  background-color: #f96a02;
  color: white;
  border-radius: 5px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

section.produtosIndex
  .listagemCategorias
  ul
  li.ver-todas-categorias-mobile.vertodas:hover {
  background-color: white;
  color: #f96a02;
}

section.produtosIndex .boxProduto {
  border: 1px solid #d0d0d0;
  padding: 10px;
  margin-bottom: 25px;
  height: 335px;
}

section.produtosIndex .boxProduto .titulo {
  font-size: 15px;
  font-weight: 700;
  color: black;
  text-align: center;
  text-transform: uppercase;
  height: 50px;
  overflow: hidden;
}

section.produtosIndex .boxProduto .imagem {
  height: 170px;
  width: 100%;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

section.produtosIndex .boxProduto .imagem:hover img {
  filter: opacity(0.7);
}

section.produtosIndex .boxProduto .imagem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

section.produtosIndex .boxProduto .botoes a {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 5px 0px;
  border-radius: 5px;
  border: 2px solid;
  font-size: 14px;
  font-weight: 700;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

section.produtosIndex .boxProduto .botoes a.bt1 {
  border-color: #f96a02;
  color: #f96a02;
  margin-top: 10px;
  margin-bottom: 10px;
}

section.produtosIndex .boxProduto .botoes a.bt1:hover {
  background-color: #f96a02;
  color: white;
}

section.produtosIndex .boxProduto .botoes a.bt2 {
  background-color: red;
  border-color: red;
  color: white;
  margin-bottom: 10px;
}

section.produtosIndex .boxProduto .botoes a.bt2:hover {
  background-color: white;
  color: red;
}

section.produtosIndex .contatoDivBox {
  margin-top: 50px;
}

@media screen and (max-width: 700px) {
  section.produtosIndex .contatoDivBox {
    margin-bottom: 50px !important;
    margin-top: auto !important;
  }
}

section.produtosIndex .contatoDivBox h3 {
  font-weight: 700;
  font-size: 26px;
  color: #222222;
}

section.produtosIndex .contatoDivBox h5 {
  margin-top: -15px;
  font-size: 13px;
  font-weight: 700;
  color: red;
}

section.produtosIndex .contatoDivBox .contatoDiv1 {
  border-radius: 15px 15px 0px 0px;
  border: 2px solid #222222;
  border-bottom: transparent;
  text-align: center;
  padding-bottom: 10px;
}

section.produtosIndex .contatoDivBox .contatoDiv2 {
  margin-top: -8px;
  border-radius: 0px 0px 15px 15px;
  background-color: #00bc51;
  text-align: center;
  padding: 15px;
}

section.produtosIndex .contatoDivBox .contatoDiv2 i.fab.fa-whatsapp {
  font-size: 30px;
  margin-right: 15px;
  color: white;
}

section.produtosIndex .contatoDivBox .fontWhatDDD {
  color: white;
  font-weight: 600;
  font-size: 20px;
}

section.produtosIndex .contatoDivBox .fontWhatNumero {
  color: white;
  font-weight: 700;
  font-size: 25px;
}

section.produtoInterna {
  margin-bottom: 50px;
  width: 100%;
  overflow: hidden;
}

section.produtoInterna .titlePage {
  font-size: 35px;
  font-weight: 700;
  width: 100%;
  color: #f96a02;
  border-left: 5px solid;
  padding-left: 20px;
}

@media screen and (max-width: 768px) {
  section.produtoInterna .titlePage.mobile {
    margin-left: 10px;
  }

  section.produtoInterna .titlePage.deskTop {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  section.produtoInterna .titlePage.mobile {
    display: none;
  }

  section.produtoInterna .titlePage.deskTop {
    margin-left: 15px;
  }
}

@media screen and (max-width: 768px) {
  section.produtoInterna .ocultar-mobile {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  section.produtoInterna .exibir-mobile {
    display: none;
  }
}

section.produtoInterna .exibir-mobile .acoes {
  margin-top: 20px;
}

section.produtoInterna .exibir-mobile .acoes a {
  display: inline-block;
  width: 49%;
  text-align: center;
  border-radius: 5px;
  color: white;
  padding: 5px 0px;
  font-size: 13px;
  cursor: pointer;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

section.produtoInterna .exibir-mobile .acoes a.tipo1 {
  background-color: red;
  border: 1px solid red;
}

section.produtoInterna .exibir-mobile .acoes a.tipo1:hover {
  border: 1px solid red;
  color: red;
  background-color: white;
}

section.produtoInterna .exibir-mobile .acoes a.tipo2 {
  background-color: #f96a02;
  border: 1px solid #f96a02;
}

section.produtoInterna .exibir-mobile .acoes a.tipo2:hover {
  border: 1px solid #f96a02;
  color: #f96a02;
  background-color: white;
}

section.produtoInterna .listagemCategorias ul.principal {
  margin-left: auto;
  border-left: 1px solid #e6edf5;
  border-right: 1px solid #e6edf5;
  border-bottom: 1px solid #e6edf5;
  margin-top: unsert !important;
}

section.produtoInterna .listagemCategorias ul.subcategorias {
  background-color: #e5e5e5;
  margin-left: unset;
  padding: 0px 40px;
}

section.produtoInterna .listagemCategorias ul li.principal {
  position: relative;
  font-size: 15px;
  font-weight: 700;
  padding: 10px 16px;
  border-top: 1px solid #e6edf5;
  list-style: none;
  text-transform: uppercase;
  color: black;
}

section.produtoInterna .listagemCategorias ul li.principal i {
  color: #3f689e;
  float: right;
}

section.produtoInterna .listagemCategorias ul li.subcategorias {
  background-color: #e5e5e5;
  position: relative;
  font-size: 13px;
  font-weight: 700;
  padding: 2px 0px;
  color: black;
}

section.produtoInterna .conteudo {
  padding: 30px;
  font-family: 'Open Sans', sans-serif !important;
}

section.produtoInterna .conteudo h1,
section.produtoInterna .conteudo h2,
section.produtoInterna .conteudo h3,
section.produtoInterna .conteudo h4,
section.produtoInterna .conteudo h5,
section.produtoInterna .conteudo h6,
section.produtoInterna .conteudo span,
section.produtoInterna .conteudo strong,
section.produtoInterna .conteudo small,
section.produtoInterna .conteudo p,
section.produtoInterna .conteudo b,
section.produtoInterna .conteudo a {
  font-family: 'Open Sans', sans-serif !important;
}

@media screen and (max-width: 768px) {
  section.produtoInterna .conteudo {
    padding: 10px;
  }
}

section.produtoInterna .conteudo .infoTitulo {
  font-size: 18px;
  font-weight: 700;
  color: red;
  width: 100%;
  text-align: center;
}

section.produtoInterna .contatoDivBox {
  margin-top: 50px;
}

@media screen and (max-width: 700px) {
  section.produtoInterna .contatoDivBox {
    margin-bottom: 50px !important;
    margin-top: auto !important;
  }
}

section.produtoInterna .contatoDivBox h3 {
  font-weight: 700;
  font-size: 26px;
  color: #222222;
}

section.produtoInterna .contatoDivBox h5 {
  margin-top: -15px;
  font-size: 13px;
  font-weight: 700;
  color: red;
}

section.produtoInterna .contatoDivBox .contatoDiv1 {
  border-radius: 15px 15px 0px 0px;
  border: 2px solid #222222;
  border-bottom: transparent;
  text-align: center;
  padding-bottom: 10px;
}

section.produtoInterna .contatoDivBox .contatoDiv2 {
  margin-top: -8px;
  border-radius: 0px 0px 15px 15px;
  background-color: #00bc51;
  text-align: center;
  padding: 15px;
}

section.produtoInterna .contatoDivBox .contatoDiv2 i.fab.fa-whatsapp {
  font-size: 30px;
  margin-right: 15px;
  color: white;
}

section.produtoInterna .contatoDivBox .fontWhatDDD {
  color: white;
  font-weight: 600;
  font-size: 20px;
}

section.produtoInterna .contatoDivBox .fontWhatNumero {
  color: white;
  font-weight: 700;
  font-size: 25px;
}

.novaGaleria .imgPrincipal {
  clear: both;
  width: 93%;
  margin: 0 auto;
}

.novaGaleria .imgPrincipal .itemPrincipal {
  width: 100%;
  height: 480px;
  margin-bottom: 5px;
}

.novaGaleria .imgPrincipal .itemPrincipal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .novaGaleria .imgPrincipal .itemPrincipal {
    height: 300px;
  }
}

.novaGaleria .todasImgs {
  width: 93%;
  margin: 0 auto;
  margin-top: 10px;
}

.novaGaleria .novagaleria .item,
.novaGaleria .novagaleria2 .item {
  height: 76px;
  cursor: pointer;
}

.novaGaleria .novagaleria .item img,
.novaGaleria .novagaleria2 .item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 1px solid grey;
}

.novaGaleria i.fas.fa-angle-left {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  height: 76px;
  padding: 27px 6px;
  font-size: 23px;
  position: absolute;
  top: 0px;
  left: 0px;
}

.novaGaleria i.fas.fa-angle-right {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  height: 76px;
  padding: 27px 6px;
  font-size: 23px;
  position: absolute;
  top: 0px;
  right: 0px;
}

aside.lateral_produto .imgphone {
  float: left;
  width: 45px !important;
  top: 15px;
  position: relative;
}

@media screen and (max-width: 768px) {
  aside.lateral_produto .left-imgphone {
    padding-left: 0px !important;
  }
}

aside.lateral_produto .left-zap {
  padding-left: 10px;
}

aside.lateral_produto .lateral-call {
  margin-top: 40px;
}

aside.lateral_produto .lateral-call .call-box {
  border: 1.5px solid #d1d1ec;
  background-color: #fff;
  border-radius: 6px;
  padding: 23px 40px 38px;
}

aside.lateral_produto .lateral-call .call-box h2 {
  color: #171aa0 !important;
  text-transform: uppercase;
  font-size: 26px;
  margin-bottom: 16px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  aside.lateral_produto .lateral-call .call-box h2 {
    font-size: 20px !important;
  }
}

aside.lateral_produto .lateral-call .call-box .contatos .inf {
  float: left;
}

aside.lateral_produto .lateral-call .call-box .contatos .telefone i {
  color: #a2cc3a !important;
}

aside.lateral_produto .lateral-call .call-box .contatos .telefone .titulo {
  font-weight: 700;
}

aside.lateral_produto .lateral-call .call-box .contatos .atendimento .img {
  background: url('https://epifer.com.br/dev/img/telefone.png') center no-repeat;
}

aside.lateral_produto .lateral-call .call-box .contatos .whatsapp i {
  color: #00d02a;
}

aside.lateral_produto .lateral-call .call-box .contatos .whatsapp .titulo {
  color: #00d02a;
  font-weight: 600;
}

aside.lateral_produto .lateral-call .call-box .contatos .whatsapp .img {
  background: url('https://epifer.com.br/dev/img/whatsapp.png') center no-repeat;
}

aside.lateral_produto .lateral-call .call-box .sv {
  margin-bottom: 15px;
  border-bottom: 1px solid #cad6e4;
  padding-bottom: 15px;
}

aside.lateral_produto .lateral-call .call-box .sv:last-child {
  margin: 0;
  padding: 0;
  border: 0;
}

aside.lateral_produto .lateral-call .call-box .sv .img,
aside.lateral_produto .lateral-call .call-box .sv i {
  float: left;
  margin-right: 13px;
  font-size: 50px;
}

aside.lateral_produto .lateral-call .call-box .sv .titulo {
  float: left;
  font-size: 19px;
  font-weight: 700;
  color: #000;
  line-height: 1.5;
  width: calc(100% - 62px);
}

aside.lateral_produto .lateral-call .call-box .sv .numero {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  font-size: 24px;
  margin-top: -5.5px;
  color: #47525f;
  font-family: 'Open Sans', sans-serif !important;
  font-weight: 500;
  display: block;
}

@media screen and (max-width: 768px) {
  aside.lateral_produto .lateral-call .call-box .sv .numero {
    font-size: 15px !important;
    margin-bottom: 15px;
  }
}

aside.lateral_produto .lateral-call .call-box .sv.redes .titulo {
  margin-left: 47px;
}

aside.lateral_produto .lateral-call .call-box .sv.redes a {
  float: none;
  margin-left: -47px;
  display: block;
  line-height: 36px;
  margin-bottom: 14px;
}

aside.lateral_produto .lateral-call .call-box .sv.redes a i {
  font-size: 36px;
  color: #aaa;
}

aside.lateral_produto .lateral-call .call-box .sv a:hover .numero {
  color: #222;
}

aside.lateral_produto .lateral-call .call-box .sv.whatsapp i {
  color: #00d02a;
  font-size: 50px;
}

aside.lateral_produto .lateral-call .call-box .sv.whatsapp .titulo {
  color: #00d02a;
  font-weight: 700;
  font-size: 17px;
}

aside.lateral_produto h2 {
  text-transform: uppercase;
  font-size: 1.2rem;
  color: #09b125;
  line-height: 1.2;
  padding-top: 10px !important;
  padding-bottom: 3px;
  font-weight: 700;
  text-align: center;
}

aside.lateral_produto h2:first-child {
  padding-top: 0px;
  margin-bottom: 11px;
}

@media screen and (max-width: 768px) {
  aside.lateral_produto h2:first-child {
    font-size: 18px;
  }
}

aside.lateral_produto h3 {
  font-size: 0.8rem;
  line-height: 1.2;
  color: black;
  text-align: center;
}

aside.lateral_produto .mtop {
  margin-top: 80px;
}

aside.lateral_produto .formulario {
  position: relative;
}

aside.lateral_produto .formulario form {
  padding: 2rem 0.5rem 0.5rem;
  margin-top: 40px;
  border: 1.5px solid #fff;
  background-color: #fff;
  border-radius: 15px;
}

aside.lateral_produto .formulario form.borda2 {
  box-shadow: 2px 3px 20px 6px #dedede;
}

aside.lateral_produto .formulario form .form-floating-label {
  position: relative;
  border: 1px solid #bfbcbc;
  border-radius: 5px;
  margin-bottom: 15px;
}

aside.lateral_produto .formulario form .form-floating-label label {
  color: #a4a8ab;
  font-size: 13px;
  position: absolute;
  pointer-events: none;
  left: 16px;
  top: 7px !important;
  transition: all 0.2s ease-in;
  font-weight: 400;
  text-transform: none;
}

aside.lateral_produto .formulario form .form-floating-label textarea ~ label {
  top: 0px;
  font-size: 13px;
  font-weight: 400;
  left: 12px !important;
}

aside.lateral_produto .formulario form .form-floating-label input:focus ~ label,
aside.lateral_produto
  .formulario
  form
  .form-floating-label
  input:disabled[value]
  ~ label,
aside.lateral_produto
  .formulario
  form
  .form-floating-label.has-value
  input
  ~ label {
  top: 0px !important;
  font-size: 12px;
  font-weight: 400;
  left: 12px !important;
}

aside.lateral_produto
  .formulario
  form
  .form-floating-label
  textarea:focus
  ~ label,
aside.lateral_produto
  .formulario
  form
  .form-floating-label.has-value
  textarea
  ~ label {
  top: 0px !important;
  font-size: 12px;
  color: #a4a8ab;
  font-weight: 400;
  left: 12px !important;
}

aside.lateral_produto .formulario form input,
aside.lateral_produto .formulario form textarea,
aside.lateral_produto .formulario form select {
  margin: 0;
  border: 0px;
  border-radius: 0px !important;
  font-weight: 400 !important;
  background: transparent !important;
  padding: 18px 10px 3px 8px;
  font-size: 13px;
  color: #a4a8ab;
  height: auto;
}

aside.lateral_produto .formulario form select {
  padding-bottom: 16px !important;
}

aside.lateral_produto .formulario form input:focus,
aside.lateral_produto .formulario form select:focus,
aside.lateral_produto .formulario form textarea:focus {
  border-radius: 0px !important;
  box-shadow: none !important;
  color: #40515f;
  padding-left: 10px;
}

aside.lateral_produto .formulario form button.button,
aside.lateral_produto .formulario form a.button {
  text-transform: uppercase;
  width: 100%;
  font-size: 14px;
  padding: 0.75rem 1rem;
  display: block;
  font-weight: 700;
  margin: 0px;
  background: #0ab726;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  border-radius: 70px !important;
  color: #fff !important;
  border: 2px solid #0ab726 !important;
  position: relative;
}

@media screen and (max-width: 768px) {
  aside.lateral_produto .formulario form button.button,
  aside.lateral_produto .formulario form a.button {
    font-size: 0.9rem;
  }
}

aside.lateral_produto .formulario form button.button i,
aside.lateral_produto .formulario form a.button i {
  font-size: 34px;
  font-weight: 100;
  position: absolute;
  top: 2px;
  right: 10px;
}

aside.lateral_produto .formulario form button.button:hover,
aside.lateral_produto .formulario form a.button:hover {
  filter: opacity(0.8);
}

aside.lateral_produto .formulario form small {
  color: #bbb;
  font-weight: 700;
}

aside.lateral_produto .formulario::before {
  height: 37px !important;
  width: 80px;
  align-self: center;
  position: absolute;
  left: calc(50% - 40px);
  margin-top: -35px;
  border-radius: 100px 100px 0px 0px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  border-right: 2px solid #fff;
  z-index: 2;
  background-color: #fff;
}

aside.lateral_produto .formulario.borda2::before {
  box-shadow: 1px -4px 20px 0px #dedede;
}

aside.lateral_produto .formulario:before {
  content: '';
  align-items: center !important;
  text-align: center;
  padding-top: 8px;
}

aside.lateral_produto .formulario:after {
  content: '\f078';
  font-family: 'Font Awesome 5 Free';
  font-size: 28px;
  text-align: center;
  padding-top: 4px;
  position: absolute;
  z-index: 10;
  top: -25px;
  left: calc(50% - 30px);
  border: 6px solid #09b125;
  color: #09b125;
  border-radius: 100px;
  width: 60px;
  height: 60px;
  font-weight: 900;
  background-color: white;
}

aside.lateral_produto .divZap {
  width: 100%;
  height: 67px;
  border-radius: 5px;
  box-shadow: 2px 3px 20px 1px #dedede;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

aside.lateral_produto .divZap .icone {
  float: left;
}

aside.lateral_produto .divZap .icone i.fab.fa-whatsapp {
  font-size: 41px;
  font-weight: 700;
  color: #00d02a;
  padding: 10px 13px;
}

aside.lateral_produto .divZap .content {
  float: left;
}

aside.lateral_produto .divZap .content .txt1 {
  font-size: 17px;
  font-weight: 600;
  color: #00d02a;
}

aside.lateral_produto .divZap .content .txt2 {
  font-size: 23px;
  color: black;
  margin-top: -10px;
}

aside.lateral_produto .divZap:hover {
  background-color: #00d02a;
}

aside.lateral_produto .divZap:hover .icone i.fab.fa-whatsapp,
aside.lateral_produto .divZap:hover .content .txt1,
aside.lateral_produto .divZap:hover .content .txt2 {
  color: white;
}

section.paginacao {
  clear: both;
}

section.paginacao ul li {
  display: inline;
  border-radius: 2px;
  border: 1px solid #a0a0a0;
  padding: 2px 6px 4px 10px;
  margin-right: 10px;
}

section.paginacao ul li a {
  opacity: 0.8;
  font-size: 15px;
  font-weight: 700;
  color: black;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

section.paginacao ul li a:hover {
  background-color: a0a0a0;
}

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/*.fa {*/
/*display: inline-block;*/
/*font: normal normal normal 14px/1 FontAwesome;*/
/*font-size: inherit;*/
/*text-rendering: auto;*/
/*-webkit-font-smoothing: antialiased;*/
/*-moz-osx-font-smoothing: grayscale*/
/*}*/

.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.28571em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.14286em;
  list-style-type: none;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.14286em;
  width: 2.14286em;
  top: 0.14286em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.85714em;
}

.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eee;
  border-radius: 0.1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left {
  margin-right: 0.3em;
}

.fa.fa-pull-right {
  margin-left: 0.3em;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: 0.3em;
}

.fa.pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

.fa-rotate-90 {
  -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=1)';
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=2)';
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=3)';
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)';
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)';
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

.fa-glass:before {
  content: '';
}

.fa-music:before {
  content: '';
}

.fa-search:before {
  content: '';
}

.fa-envelope-o:before {
  content: '';
}

.fa-heart:before {
  content: '';
}

.fa-star:before {
  content: '';
}

.fa-star-o:before {
  content: '';
}

.fa-user:before {
  content: '';
}

.fa-film:before {
  content: '';
}

.fa-th-large:before {
  content: '';
}

.fa-th:before {
  content: '';
}

.fa-th-list:before {
  content: '';
}

.fa-check:before {
  content: '';
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: '';
}

.fa-search-plus:before {
  content: '';
}

.fa-search-minus:before {
  content: '';
}

.fa-power-off:before {
  content: '';
}

.fa-signal:before {
  content: '';
}

.fa-gear:before,
.fa-cog:before {
  content: '';
}

.fa-trash-o:before {
  content: '';
}

.fa-home:before {
  content: '';
}

.fa-file-o:before {
  content: '';
}

.fa-clock-o:before {
  content: '';
}

.fa-road:before {
  content: '';
}

.fa-download:before {
  content: '';
}

.fa-arrow-circle-o-down:before {
  content: '';
}

.fa-arrow-circle-o-up:before {
  content: '';
}

.fa-inbox:before {
  content: '';
}

.fa-play-circle-o:before {
  content: '';
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: '';
}

.fa-refresh:before {
  content: '';
}

.fa-list-alt:before {
  content: '';
}

.fa-lock:before {
  content: '';
}

.fa-flag:before {
  content: '';
}

.fa-headphones:before {
  content: '';
}

.fa-volume-off:before {
  content: '';
}

.fa-volume-down:before {
  content: '';
}

.fa-volume-up:before {
  content: '';
}

.fa-qrcode:before {
  content: '';
}

.fa-barcode:before {
  content: '';
}

.fa-tag:before {
  content: '';
}

.fa-tags:before {
  content: '';
}

.fa-book:before {
  content: '';
}

.fa-bookmark:before {
  content: '';
}

.fa-print:before {
  content: '';
}

.fa-camera:before {
  content: '';
}

.fa-font:before {
  content: '';
}

.fa-bold:before {
  content: '';
}

.fa-italic:before {
  content: '';
}

.fa-text-height:before {
  content: '';
}

.fa-text-width:before {
  content: '';
}

.fa-align-left:before {
  content: '';
}

.fa-align-center:before {
  content: '';
}

.fa-align-right:before {
  content: '';
}

.fa-align-justify:before {
  content: '';
}

.fa-list:before {
  content: '';
}

.fa-dedent:before,
.fa-outdent:before {
  content: '';
}

.fa-indent:before {
  content: '';
}

.fa-video-camera:before {
  content: '';
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: '';
}

.fa-pencil:before {
  content: '';
}

.fa-map-marker:before {
  content: '';
}

.fa-adjust:before {
  content: '';
}

.fa-tint:before {
  content: '';
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: '';
}

.fa-share-square-o:before {
  content: '';
}

.fa-check-square-o:before {
  content: '';
}

.fa-arrows:before {
  content: '';
}

.fa-step-backward:before {
  content: '';
}

.fa-fast-backward:before {
  content: '';
}

.fa-backward:before {
  content: '';
}

.fa-play:before {
  content: '';
}

.fa-pause:before {
  content: '';
}

.fa-stop:before {
  content: '';
}

.fa-forward:before {
  content: '';
}

.fa-fast-forward:before {
  content: '';
}

.fa-step-forward:before {
  content: '';
}

.fa-eject:before {
  content: '';
}

.fa-chevron-left:before {
  content: '';
}

.fa-chevron-right:before {
  content: '';
}

.fa-plus-circle:before {
  content: '';
}

.fa-minus-circle:before {
  content: '';
}

.fa-times-circle:before {
  content: '';
}

.fa-check-circle:before {
  content: '';
}

.fa-question-circle:before {
  content: '';
}

.fa-info-circle:before {
  content: '';
}

.fa-crosshairs:before {
  content: '';
}

.fa-times-circle-o:before {
  content: '';
}

.fa-check-circle-o:before {
  content: '';
}

.fa-ban:before {
  content: '';
}

.fa-arrow-left:before {
  content: '';
}

.fa-arrow-right:before {
  content: '';
}

.fa-arrow-up:before {
  content: '';
}

.fa-arrow-down:before {
  content: '';
}

.fa-mail-forward:before,
.fa-share:before {
  content: '';
}

.fa-expand:before {
  content: '';
}

.fa-compress:before {
  content: '';
}

.fa-plus:before {
  content: '';
}

.fa-minus:before {
  content: '';
}

.fa-asterisk:before {
  content: '';
}

.fa-exclamation-circle:before {
  content: '';
}

.fa-gift:before {
  content: '';
}

.fa-leaf:before {
  content: '';
}

.fa-fire:before {
  content: '';
}

.fa-eye:before {
  content: '';
}

.fa-eye-slash:before {
  content: '';
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: '';
}

.fa-plane:before {
  content: '';
}

.fa-calendar:before {
  content: '';
}

.fa-random:before {
  content: '';
}

.fa-comment:before {
  content: '';
}

.fa-magnet:before {
  content: '';
}

.fa-chevron-up:before {
  content: '';
}

.fa-chevron-down:before {
  content: '';
}

.fa-retweet:before {
  content: '';
}

.fa-shopping-cart:before {
  content: '';
}

.fa-folder:before {
  content: '';
}

.fa-folder-open:before {
  content: '';
}

.fa-arrows-v:before {
  content: '';
}

.fa-arrows-h:before {
  content: '';
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: '';
}

.fa-twitter-square:before {
  content: '';
}

.fa-facebook-square:before {
  content: '';
}

.fa-camera-retro:before {
  content: '';
}

.fa-key:before {
  content: '';
}

.fa-gears:before,
.fa-cogs:before {
  content: '';
}

.fa-comments:before {
  content: '';
}

.fa-thumbs-o-up:before {
  content: '';
}

.fa-thumbs-o-down:before {
  content: '';
}

.fa-star-half:before {
  content: '';
}

.fa-heart-o:before {
  content: '';
}

.fa-sign-out:before {
  content: '';
}

.fa-linkedin-square:before {
  content: '';
}

.fa-thumb-tack:before {
  content: '';
}

.fa-external-link:before {
  content: '';
}

.fa-sign-in:before {
  content: '';
}

.fa-trophy:before {
  content: '';
}

.fa-github-square:before {
  content: '';
}

.fa-upload:before {
  content: '';
}

.fa-lemon-o:before {
  content: '';
}

.fa-phone:before {
  content: '';
}

.fa-square-o:before {
  content: '';
}

.fa-bookmark-o:before {
  content: '';
}

.fa-phone-square:before {
  content: '';
}

.fa-twitter:before {
  content: '';
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: '';
}

.fa-github:before {
  content: '';
}

.fa-unlock:before {
  content: '';
}

.fa-credit-card:before {
  content: '';
}

.fa-feed:before,
.fa-rss:before {
  content: '';
}

.fa-hdd-o:before {
  content: '';
}

.fa-bullhorn:before {
  content: '';
}

.fa-bell:before {
  content: '';
}

.fa-certificate:before {
  content: '';
}

.fa-hand-o-right:before {
  content: '';
}

.fa-hand-o-left:before {
  content: '';
}

.fa-hand-o-up:before {
  content: '';
}

.fa-hand-o-down:before {
  content: '';
}

.fa-arrow-circle-left:before {
  content: '';
}

.fa-arrow-circle-right:before {
  content: '';
}

.fa-arrow-circle-up:before {
  content: '';
}

.fa-arrow-circle-down:before {
  content: '';
}

.fa-globe:before {
  content: '';
}

.fa-wrench:before {
  content: '';
}

.fa-tasks:before {
  content: '';
}

.fa-filter:before {
  content: '';
}

.fa-briefcase:before {
  content: '';
}

.fa-arrows-alt:before {
  content: '';
}

.fa-group:before,
.fa-users:before {
  content: '';
}

.fa-chain:before,
.fa-link:before {
  content: '';
}

.fa-cloud:before {
  content: '';
}

.fa-flask:before {
  content: '';
}

.fa-cut:before,
.fa-scissors:before {
  content: '';
}

.fa-copy:before,
.fa-files-o:before {
  content: '';
}

.fa-paperclip:before {
  content: '';
}

.fa-save:before,
.fa-floppy-o:before {
  content: '';
}

.fa-square:before {
  content: '';
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: '';
}

.fa-list-ul:before {
  content: '';
}

.fa-list-ol:before {
  content: '';
}

.fa-strikethrough:before {
  content: '';
}

.fa-underline:before {
  content: '';
}

.fa-table:before {
  content: '';
}

.fa-magic:before {
  content: '';
}

.fa-truck:before {
  content: '';
}

.fa-pinterest:before {
  content: '';
}

.fa-pinterest-square:before {
  content: '';
}

.fa-google-plus-square:before {
  content: '';
}

.fa-google-plus:before {
  content: '';
}

.fa-money:before {
  content: '';
}

.fa-caret-down:before {
  content: '';
}

.fa-caret-up:before {
  content: '';
}

.fa-caret-left:before {
  content: '';
}

.fa-caret-right:before {
  content: '';
}

.fa-columns:before {
  content: '';
}

.fa-unsorted:before,
.fa-sort:before {
  content: '';
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: '';
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: '';
}

.fa-envelope:before {
  content: '';
}

.fa-linkedin:before {
  content: '';
}

.fa-rotate-left:before,
.fa-undo:before {
  content: '';
}

.fa-legal:before,
.fa-gavel:before {
  content: '';
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: '';
}

.fa-comment-o:before {
  content: '';
}

.fa-comments-o:before {
  content: '';
}

.fa-flash:before,
.fa-bolt:before {
  content: '';
}

.fa-sitemap:before {
  content: '';
}

.fa-umbrella:before {
  content: '';
}

.fa-paste:before,
.fa-clipboard:before {
  content: '';
}

.fa-lightbulb-o:before {
  content: '';
}

.fa-exchange:before {
  content: '';
}

.fa-cloud-download:before {
  content: '';
}

.fa-cloud-upload:before {
  content: '';
}

.fa-user-md:before {
  content: '';
}

.fa-stethoscope:before {
  content: '';
}

.fa-suitcase:before {
  content: '';
}

.fa-bell-o:before {
  content: '';
}

.fa-coffee:before {
  content: '';
}

.fa-cutlery:before {
  content: '';
}

.fa-file-text-o:before {
  content: '';
}

.fa-building-o:before {
  content: '';
}

.fa-hospital-o:before {
  content: '';
}

.fa-ambulance:before {
  content: '';
}

.fa-medkit:before {
  content: '';
}

.fa-fighter-jet:before {
  content: '';
}

.fa-beer:before {
  content: '';
}

.fa-h-square:before {
  content: '';
}

.fa-plus-square:before {
  content: '';
}

.fa-angle-double-left:before {
  content: '';
}

.fa-angle-double-right:before {
  content: '';
}

.fa-angle-double-up:before {
  content: '';
}

.fa-angle-double-down:before {
  content: '';
}

.fa-angle-left:before {
  content: '';
}

.fa-angle-right:before {
  content: '';
}

.fa-angle-up:before {
  content: '';
}

.fa-angle-down:before {
  content: '';
}

.fa-desktop:before {
  content: '';
}

.fa-laptop:before {
  content: '';
}

.fa-tablet:before {
  content: '';
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: '';
}

.fa-circle-o:before {
  content: '';
}

.fa-quote-left:before {
  content: '';
}

.fa-quote-right:before {
  content: '';
}

.fa-spinner:before {
  content: '';
}

.fa-circle:before {
  content: '';
}

.fa-mail-reply:before,
.fa-reply:before {
  content: '';
}

.fa-github-alt:before {
  content: '';
}

.fa-folder-o:before {
  content: '';
}

.fa-folder-open-o:before {
  content: '';
}

.fa-smile-o:before {
  content: '';
}

.fa-frown-o:before {
  content: '';
}

.fa-meh-o:before {
  content: '';
}

.fa-gamepad:before {
  content: '';
}

.fa-keyboard-o:before {
  content: '';
}

.fa-flag-o:before {
  content: '';
}

.fa-flag-checkered:before {
  content: '';
}

.fa-terminal:before {
  content: '';
}

.fa-code:before {
  content: '';
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: '';
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: '';
}

.fa-location-arrow:before {
  content: '';
}

.fa-crop:before {
  content: '';
}

.fa-code-fork:before {
  content: '';
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: '';
}

.fa-question:before {
  content: '';
}

.fa-info:before {
  content: '';
}

.fa-exclamation:before {
  content: '';
}

.fa-superscript:before {
  content: '';
}

.fa-subscript:before {
  content: '';
}

.fa-eraser:before {
  content: '';
}

.fa-puzzle-piece:before {
  content: '';
}

.fa-microphone:before {
  content: '';
}

.fa-microphone-slash:before {
  content: '';
}

.fa-shield:before {
  content: '';
}

.fa-calendar-o:before {
  content: '';
}

.fa-fire-extinguisher:before {
  content: '';
}

.fa-rocket:before {
  content: '';
}

.fa-maxcdn:before {
  content: '';
}

.fa-chevron-circle-left:before {
  content: '';
}

.fa-chevron-circle-right:before {
  content: '';
}

.fa-chevron-circle-up:before {
  content: '';
}

.fa-chevron-circle-down:before {
  content: '';
}

.fa-html5:before {
  content: '';
}

.fa-css3:before {
  content: '';
}

.fa-anchor:before {
  content: '';
}

.fa-unlock-alt:before {
  content: '';
}

.fa-bullseye:before {
  content: '';
}

.fa-ellipsis-h:before {
  content: '';
}

.fa-ellipsis-v:before {
  content: '';
}

.fa-rss-square:before {
  content: '';
}

.fa-play-circle:before {
  content: '';
}

.fa-ticket:before {
  content: '';
}

.fa-minus-square:before {
  content: '';
}

.fa-minus-square-o:before {
  content: '';
}

.fa-level-up:before {
  content: '';
}

.fa-level-down:before {
  content: '';
}

.fa-check-square:before {
  content: '';
}

.fa-pencil-square:before {
  content: '';
}

.fa-external-link-square:before {
  content: '';
}

.fa-share-square:before {
  content: '';
}

.fa-compass:before {
  content: '';
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: '';
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: '';
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: '';
}

.fa-euro:before,
.fa-eur:before {
  content: '';
}

.fa-gbp:before {
  content: '';
}

.fa-dollar:before,
.fa-usd:before {
  content: '';
}

.fa-rupee:before,
.fa-inr:before {
  content: '';
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: '';
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: '';
}

.fa-won:before,
.fa-krw:before {
  content: '';
}

.fa-bitcoin:before,
.fa-btc:before {
  content: '';
}

.fa-file:before {
  content: '';
}

.fa-file-text:before {
  content: '';
}

.fa-sort-alpha-asc:before {
  content: '';
}

.fa-sort-alpha-desc:before {
  content: '';
}

.fa-sort-amount-asc:before {
  content: '';
}

.fa-sort-amount-desc:before {
  content: '';
}

.fa-sort-numeric-asc:before {
  content: '';
}

.fa-sort-numeric-desc:before {
  content: '';
}

.fa-thumbs-up:before {
  content: '';
}

.fa-thumbs-down:before {
  content: '';
}

.fa-youtube-square:before {
  content: '';
}

.fa-youtube:before {
  content: '';
}

.fa-xing:before {
  content: '';
}

.fa-xing-square:before {
  content: '';
}

.fa-youtube-play:before {
  content: '';
}

.fa-dropbox:before {
  content: '';
}

.fa-stack-overflow:before {
  content: '';
}

.fa-instagram:before {
  content: '';
}

.fa-flickr:before {
  content: '';
}

.fa-adn:before {
  content: '';
}

.fa-bitbucket:before {
  content: '';
}

.fa-bitbucket-square:before {
  content: '';
}

.fa-tumblr:before {
  content: '';
}

.fa-tumblr-square:before {
  content: '';
}

.fa-long-arrow-down:before {
  content: '';
}

.fa-long-arrow-up:before {
  content: '';
}

.fa-long-arrow-left:before {
  content: '';
}

.fa-long-arrow-right:before {
  content: '';
}

.fa-apple:before {
  content: '';
}

.fa-windows:before {
  content: '';
}

.fa-android:before {
  content: '';
}

.fa-linux:before {
  content: '';
}

.fa-dribbble:before {
  content: '';
}

.fa-skype:before {
  content: '';
}

.fa-foursquare:before {
  content: '';
}

.fa-trello:before {
  content: '';
}

.fa-female:before {
  content: '';
}

.fa-male:before {
  content: '';
}

.fa-gittip:before,
.fa-gratipay:before {
  content: '';
}

.fa-sun-o:before {
  content: '';
}

.fa-moon-o:before {
  content: '';
}

.fa-archive:before {
  content: '';
}

.fa-bug:before {
  content: '';
}

.fa-vk:before {
  content: '';
}

.fa-weibo:before {
  content: '';
}

.fa-renren:before {
  content: '';
}

.fa-pagelines:before {
  content: '';
}

.fa-stack-exchange:before {
  content: '';
}

.fa-arrow-circle-o-right:before {
  content: '';
}

.fa-arrow-circle-o-left:before {
  content: '';
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: '';
}

.fa-dot-circle-o:before {
  content: '';
}

.fa-wheelchair:before {
  content: '';
}

.fa-vimeo-square:before {
  content: '';
}

.fa-turkish-lira:before,
.fa-try:before {
  content: '';
}

.fa-plus-square-o:before {
  content: '';
}

.fa-space-shuttle:before {
  content: '';
}

.fa-slack:before {
  content: '';
}

.fa-envelope-square:before {
  content: '';
}

.fa-wordpress:before {
  content: '';
}

.fa-openid:before {
  content: '';
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: '';
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: '';
}

.fa-yahoo:before {
  content: '';
}

.fa-google:before {
  content: '';
}

.fa-reddit:before {
  content: '';
}

.fa-reddit-square:before {
  content: '';
}

.fa-stumbleupon-circle:before {
  content: '';
}

.fa-stumbleupon:before {
  content: '';
}

.fa-delicious:before {
  content: '';
}

.fa-digg:before {
  content: '';
}

.fa-pied-piper-pp:before {
  content: '';
}

.fa-pied-piper-alt:before {
  content: '';
}

.fa-drupal:before {
  content: '';
}

.fa-joomla:before {
  content: '';
}

.fa-language:before {
  content: '';
}

.fa-fax:before {
  content: '';
}

.fa-building:before {
  content: '';
}

.fa-child:before {
  content: '';
}

.fa-paw:before {
  content: '';
}

.fa-spoon:before {
  content: '';
}

.fa-cube:before {
  content: '';
}

.fa-cubes:before {
  content: '';
}

.fa-behance:before {
  content: '';
}

.fa-behance-square:before {
  content: '';
}

.fa-steam:before {
  content: '';
}

.fa-steam-square:before {
  content: '';
}

.fa-recycle:before {
  content: '';
}

.fa-automobile:before,
.fa-car:before {
  content: '';
}

.fa-cab:before,
.fa-taxi:before {
  content: '';
}

.fa-tree:before {
  content: '';
}

.fa-spotify:before {
  content: '';
}

.fa-deviantart:before {
  content: '';
}

.fa-soundcloud:before {
  content: '';
}

.fa-database:before {
  content: '';
}

.fa-file-pdf-o:before {
  content: '';
}

.fa-file-word-o:before {
  content: '';
}

.fa-file-excel-o:before {
  content: '';
}

.fa-file-powerpoint-o:before {
  content: '';
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: '';
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: '';
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: '';
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: '';
}

.fa-file-code-o:before {
  content: '';
}

.fa-vine:before {
  content: '';
}

.fa-codepen:before {
  content: '';
}

.fa-jsfiddle:before {
  content: '';
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: '';
}

.fa-circle-o-notch:before {
  content: '';
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: '';
}

.fa-ge:before,
.fa-empire:before {
  content: '';
}

.fa-git-square:before {
  content: '';
}

.fa-git:before {
  content: '';
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: '';
}

.fa-tencent-weibo:before {
  content: '';
}

.fa-qq:before {
  content: '';
}

.fa-wechat:before,
.fa-weixin:before {
  content: '';
}

.fa-send:before,
.fa-paper-plane:before {
  content: '';
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: '';
}

.fa-history:before {
  content: '';
}

.fa-circle-thin:before {
  content: '';
}

.fa-header:before {
  content: '';
}

.fa-paragraph:before {
  content: '';
}

.fa-sliders:before {
  content: '';
}

.fa-share-alt:before {
  content: '';
}

.fa-share-alt-square:before {
  content: '';
}

.fa-bomb:before {
  content: '';
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: '';
}

.fa-tty:before {
  content: '';
}

.fa-binoculars:before {
  content: '';
}

.fa-plug:before {
  content: '';
}

.fa-slideshare:before {
  content: '';
}

.fa-twitch:before {
  content: '';
}

.fa-yelp:before {
  content: '';
}

.fa-newspaper-o:before {
  content: '';
}

.fa-wifi:before {
  content: '';
}

.fa-calculator:before {
  content: '';
}

.fa-paypal:before {
  content: '';
}

.fa-google-wallet:before {
  content: '';
}

.fa-cc-visa:before {
  content: '';
}

.fa-cc-mastercard:before {
  content: '';
}

.fa-cc-discover:before {
  content: '';
}

.fa-cc-amex:before {
  content: '';
}

.fa-cc-paypal:before {
  content: '';
}

.fa-cc-stripe:before {
  content: '';
}

.fa-bell-slash:before {
  content: '';
}

.fa-bell-slash-o:before {
  content: '';
}

.fa-trash:before {
  content: '';
}

.fa-copyright:before {
  content: '';
}

.fa-at:before {
  content: '';
}

.fa-eyedropper:before {
  content: '';
}

.fa-paint-brush:before {
  content: '';
}

.fa-birthday-cake:before {
  content: '';
}

.fa-area-chart:before {
  content: '';
}

.fa-pie-chart:before {
  content: '';
}

.fa-line-chart:before {
  content: '';
}

.fa-lastfm:before {
  content: '';
}

.fa-lastfm-square:before {
  content: '';
}

.fa-toggle-off:before {
  content: '';
}

.fa-toggle-on:before {
  content: '';
}

.fa-bicycle:before {
  content: '';
}

.fa-bus:before {
  content: '';
}

.fa-ioxhost:before {
  content: '';
}

.fa-angellist:before {
  content: '';
}

.fa-cc:before {
  content: '';
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: '';
}

.fa-meanpath:before {
  content: '';
}

.fa-buysellads:before {
  content: '';
}

.fa-connectdevelop:before {
  content: '';
}

.fa-dashcube:before {
  content: '';
}

.fa-forumbee:before {
  content: '';
}

.fa-leanpub:before {
  content: '';
}

.fa-sellsy:before {
  content: '';
}

.fa-shirtsinbulk:before {
  content: '';
}

.fa-simplybuilt:before {
  content: '';
}

.fa-skyatlas:before {
  content: '';
}

.fa-cart-plus:before {
  content: '';
}

.fa-cart-arrow-down:before {
  content: '';
}

.fa-diamond:before {
  content: '';
}

.fa-ship:before {
  content: '';
}

.fa-user-secret:before {
  content: '';
}

.fa-motorcycle:before {
  content: '';
}

.fa-street-view:before {
  content: '';
}

.fa-heartbeat:before {
  content: '';
}

.fa-venus:before {
  content: '';
}

.fa-mars:before {
  content: '';
}

.fa-mercury:before {
  content: '';
}

.fa-intersex:before,
.fa-transgender:before {
  content: '';
}

.fa-transgender-alt:before {
  content: '';
}

.fa-venus-double:before {
  content: '';
}

.fa-mars-double:before {
  content: '';
}

.fa-venus-mars:before {
  content: '';
}

.fa-mars-stroke:before {
  content: '';
}

.fa-mars-stroke-v:before {
  content: '';
}

.fa-mars-stroke-h:before {
  content: '';
}

.fa-neuter:before {
  content: '';
}

.fa-genderless:before {
  content: '';
}

.fa-facebook-official:before {
  content: '';
}

.fa-pinterest-p:before {
  content: '';
}

.fa-whatsapp:before {
  content: '';
}

.fa-server:before {
  content: '';
}

.fa-user-plus:before {
  content: '';
}

.fa-user-times:before {
  content: '';
}

.fa-hotel:before,
.fa-bed:before {
  content: '';
}

.fa-viacoin:before {
  content: '';
}

.fa-train:before {
  content: '';
}

.fa-subway:before {
  content: '';
}

.fa-medium:before {
  content: '';
}

.fa-yc:before,
.fa-y-combinator:before {
  content: '';
}

.fa-optin-monster:before {
  content: '';
}

.fa-opencart:before {
  content: '';
}

.fa-expeditedssl:before {
  content: '';
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: '';
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: '';
}

.fa-battery-2:before,
.fa-battery-half:before {
  content: '';
}

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: '';
}

.fa-battery-0:before,
.fa-battery-empty:before {
  content: '';
}

.fa-mouse-pointer:before {
  content: '';
}

.fa-i-cursor:before {
  content: '';
}

.fa-object-group:before {
  content: '';
}

.fa-object-ungroup:before {
  content: '';
}

.fa-sticky-note:before {
  content: '';
}

.fa-sticky-note-o:before {
  content: '';
}

.fa-cc-jcb:before {
  content: '';
}

.fa-cc-diners-club:before {
  content: '';
}

.fa-clone:before {
  content: '';
}

.fa-balance-scale:before {
  content: '';
}

.fa-hourglass-o:before {
  content: '';
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: '';
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: '';
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: '';
}

.fa-hourglass:before {
  content: '';
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: '';
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: '';
}

.fa-hand-scissors-o:before {
  content: '';
}

.fa-hand-lizard-o:before {
  content: '';
}

.fa-hand-spock-o:before {
  content: '';
}

.fa-hand-pointer-o:before {
  content: '';
}

.fa-hand-peace-o:before {
  content: '';
}

.fa-trademark:before {
  content: '';
}

.fa-registered:before {
  content: '';
}

.fa-creative-commons:before {
  content: '';
}

.fa-gg:before {
  content: '';
}

.fa-gg-circle:before {
  content: '';
}

.fa-tripadvisor:before {
  content: '';
}

.fa-odnoklassniki:before {
  content: '';
}

.fa-odnoklassniki-square:before {
  content: '';
}

.fa-get-pocket:before {
  content: '';
}

.fa-wikipedia-w:before {
  content: '';
}

.fa-safari:before {
  content: '';
}

.fa-chrome:before {
  content: '';
}

.fa-firefox:before {
  content: '';
}

.fa-opera:before {
  content: '';
}

.fa-internet-explorer:before {
  content: '';
}

.fa-tv:before,
.fa-television:before {
  content: '';
}

.fa-contao:before {
  content: '';
}

.fa-500px:before {
  content: '';
}

.fa-amazon:before {
  content: '';
}

.fa-calendar-plus-o:before {
  content: '';
}

.fa-calendar-minus-o:before {
  content: '';
}

.fa-calendar-times-o:before {
  content: '';
}

.fa-calendar-check-o:before {
  content: '';
}

.fa-industry:before {
  content: '';
}

.fa-map-pin:before {
  content: '';
}

.fa-map-signs:before {
  content: '';
}

.fa-map-o:before {
  content: '';
}

.fa-map:before {
  content: '';
}

.fa-commenting:before {
  content: '';
}

.fa-commenting-o:before {
  content: '';
}

.fa-houzz:before {
  content: '';
}

.fa-vimeo:before {
  content: '';
}

.fa-black-tie:before {
  content: '';
}

.fa-fonticons:before {
  content: '';
}

.fa-reddit-alien:before {
  content: '';
}

.fa-edge:before {
  content: '';
}

.fa-credit-card-alt:before {
  content: '';
}

.fa-codiepie:before {
  content: '';
}

.fa-modx:before {
  content: '';
}

.fa-fort-awesome:before {
  content: '';
}

.fa-usb:before {
  content: '';
}

.fa-product-hunt:before {
  content: '';
}

.fa-mixcloud:before {
  content: '';
}

.fa-scribd:before {
  content: '';
}

.fa-pause-circle:before {
  content: '';
}

.fa-pause-circle-o:before {
  content: '';
}

.fa-stop-circle:before {
  content: '';
}

.fa-stop-circle-o:before {
  content: '';
}

.fa-shopping-bag:before {
  content: '';
}

.fa-shopping-basket:before {
  content: '';
}

.fa-hashtag:before {
  content: '';
}

.fa-bluetooth:before {
  content: '';
}

.fa-bluetooth-b:before {
  content: '';
}

.fa-percent:before {
  content: '';
}

.fa-gitlab:before {
  content: '';
}

.fa-wpbeginner:before {
  content: '';
}

.fa-wpforms:before {
  content: '';
}

.fa-envira:before {
  content: '';
}

.fa-universal-access:before {
  content: '';
}

.fa-wheelchair-alt:before {
  content: '';
}

.fa-question-circle-o:before {
  content: '';
}

.fa-blind:before {
  content: '';
}

.fa-audio-description:before {
  content: '';
}

.fa-volume-control-phone:before {
  content: '';
}

.fa-braille:before {
  content: '';
}

.fa-assistive-listening-systems:before {
  content: '';
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: '';
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: '';
}

.fa-glide:before {
  content: '';
}

.fa-glide-g:before {
  content: '';
}

.fa-signing:before,
.fa-sign-language:before {
  content: '';
}

.fa-low-vision:before {
  content: '';
}

.fa-viadeo:before {
  content: '';
}

.fa-viadeo-square:before {
  content: '';
}

.fa-snapchat:before {
  content: '';
}

.fa-snapchat-ghost:before {
  content: '';
}

.fa-snapchat-square:before {
  content: '';
}

.fa-pied-piper:before {
  content: '';
}

.fa-first-order:before {
  content: '';
}

.fa-yoast:before {
  content: '';
}

.fa-themeisle:before {
  content: '';
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: '';
}

.fa-fa:before,
.fa-font-awesome:before {
  content: '';
}

.fa-handshake-o:before {
  content: '';
}

.fa-envelope-open:before {
  content: '';
}

.fa-envelope-open-o:before {
  content: '';
}

.fa-linode:before {
  content: '';
}

.fa-address-book:before {
  content: '';
}

.fa-address-book-o:before {
  content: '';
}

.fa-vcard:before,
.fa-address-card:before {
  content: '';
}

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: '';
}

.fa-user-circle:before {
  content: '';
}

.fa-user-circle-o:before {
  content: '';
}

.fa-user-o:before {
  content: '';
}

.fa-id-badge:before {
  content: '';
}

.fa-drivers-license:before,
.fa-id-card:before {
  content: '';
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: '';
}

.fa-quora:before {
  content: '';
}

.fa-free-code-camp:before {
  content: '';
}

.fa-telegram:before {
  content: '';
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: '';
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: '';
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: '';
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: '';
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: '';
}

.fa-shower:before {
  content: '';
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: '';
}

.fa-podcast:before {
  content: '';
}

.fa-window-maximize:before {
  content: '';
}

.fa-window-minimize:before {
  content: '';
}

.fa-window-restore:before {
  content: '';
}

.fa-times-rectangle:before,
.fa-window-close:before {
  content: '';
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: '';
}

.fa-bandcamp:before {
  content: '';
}

.fa-grav:before {
  content: '';
}

.fa-etsy:before {
  content: '';
}

.fa-imdb:before {
  content: '';
}

.fa-ravelry:before {
  content: '';
}

.fa-eercast:before {
  content: '';
}

.fa-microchip:before {
  content: '';
}

.fa-snowflake-o:before {
  content: '';
}

.fa-superpowers:before {
  content: '';
}

.fa-wpexplorer:before {
  content: '';
}

.fa-meetup:before {
  content: '';
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */
html {
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

figcaption,
figure {
  display: block;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

main {
  display: block;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:active,
a:hover {
  outline-width: 0;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: inherit;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

dfn {
  font-style: italic;
}

mark {
  background-color: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

audio,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

img {
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring {
  outline: 1px dotted ButtonText;
}

input {
  overflow: visible;
}

[type='checkbox'],
[type='radio'] {
  box-sizing: border-box;
  padding: 0;
}

[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}

[type='search'] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type='search']::-webkit-search-cancel-button,
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  box-sizing: border-box;
  display: table;
  max-width: 100%;
  padding: 0;
  color: inherit;
  white-space: normal;
}

progress {
  display: inline-block;
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

details {
  display: block;
}

summary {
  display: list-item;
}

menu {
  display: block;
}

canvas {
  display: inline-block;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

.foundation-mq {
  font-family: 'small=0em&medium=40em&large=64.0625em&xlarge=90em&xxlarge=100em';
}

html {
  box-sizing: border-box;
  font-size: 100%;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  background: #fff;
  font-family: 'Coolvetica', sans-serif;
  font-weight: normal;
  line-height: 1.7;
  color: #0a0a0a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}

textarea {
  height: auto;
  min-height: 50px;
  border-radius: 0;
}

select {
  box-sizing: border-box;
  width: 100%;
  border-radius: 0;
}

.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
  max-width: none !important;
}

button {
  padding: 0;
  appearance: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  line-height: 1;
}

[data-whatinput='mouse'] button {
  outline: 0;
}

pre {
  overflow: auto;
}

.is-visible {
  display: block !important;
}

.is-hidden {
  display: none !important;
}

.row {
  max-width: 79.375rem;
  margin-right: auto;
  margin-left: auto;
}

.row::before,
.row::after {
  display: table;
  content: ' ';
}

.row::after {
  clear: both;
}

.row.collapse > .column,
.row.collapse > .columns {
  padding-right: 0;
  padding-left: 0;
}

.row .row {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

@media print, screen and (min-width: 40em) {
  .row .row {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}

@media print, screen and (min-width: 64.0625em) {
  .row .row {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}

@media screen and (min-width: 90em) {
  .row .row {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}

.row .row.collapse {
  margin-right: 0;
  margin-left: 0;
}

.row.expanded {
  max-width: none;
}

.row.expanded .row {
  margin-right: auto;
  margin-left: auto;
}

.row:not(.expanded) .row {
  max-width: none;
}

.row.gutter-small > .column,
.row.gutter-small > .columns {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}

.row.gutter-medium > .column,
.row.gutter-medium > .columns {
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
}

.column,
.columns {
  width: 100%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}

@media print, screen and (min-width: 40em) {
  .column,
  .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

.column:last-child:not(:first-child),
.columns:last-child:not(:first-child) {
  float: right;
}

.column.end:last-child:last-child,
.end.columns:last-child:last-child {
  float: left;
}

.column.row.row,
.row.row.columns {
  float: none;
}

.row .column.row.row,
.row .row.row.columns {
  margin-right: 0;
  margin-left: 0;
  padding-right: 0;
  padding-left: 0;
}

.small-1 {
  width: 8.33333%;
}

.small-push-1 {
  position: relative;
  left: 8.33333%;
}

.small-pull-1 {
  position: relative;
  left: -8.33333%;
}

.small-offset-0 {
  margin-left: 0%;
}

.small-2 {
  width: 16.66667%;
}

.small-push-2 {
  position: relative;
  left: 16.66667%;
}

.small-pull-2 {
  position: relative;
  left: -16.66667%;
}

.small-offset-1 {
  margin-left: 8.33333%;
}

.small-3 {
  width: 25%;
}

.small-push-3 {
  position: relative;
  left: 25%;
}

.small-pull-3 {
  position: relative;
  left: -25%;
}

.small-offset-2 {
  margin-left: 16.66667%;
}

.small-4 {
  width: 33.33333%;
}

.small-push-4 {
  position: relative;
  left: 33.33333%;
}

.small-pull-4 {
  position: relative;
  left: -33.33333%;
}

.small-offset-3 {
  margin-left: 25%;
}

.small-5 {
  width: 41.66667%;
}

.small-push-5 {
  position: relative;
  left: 41.66667%;
}

.small-pull-5 {
  position: relative;
  left: -41.66667%;
}

.small-offset-4 {
  margin-left: 33.33333%;
}

.small-6 {
  width: 50%;
}

.small-push-6 {
  position: relative;
  left: 50%;
}

.small-pull-6 {
  position: relative;
  left: -50%;
}

.small-offset-5 {
  margin-left: 41.66667%;
}

.small-7 {
  width: 58.33333%;
}

.small-push-7 {
  position: relative;
  left: 58.33333%;
}

.small-pull-7 {
  position: relative;
  left: -58.33333%;
}

.small-offset-6 {
  margin-left: 50%;
}

.small-8 {
  width: 66.66667%;
}

.small-push-8 {
  position: relative;
  left: 66.66667%;
}

.small-pull-8 {
  position: relative;
  left: -66.66667%;
}

.small-offset-7 {
  margin-left: 58.33333%;
}

.small-9 {
  width: 75%;
}

.small-push-9 {
  position: relative;
  left: 75%;
}

.small-pull-9 {
  position: relative;
  left: -75%;
}

.small-offset-8 {
  margin-left: 66.66667%;
}

.small-10 {
  width: 83.33333%;
}

.small-push-10 {
  position: relative;
  left: 83.33333%;
}

.small-pull-10 {
  position: relative;
  left: -83.33333%;
}

.small-offset-9 {
  margin-left: 75%;
}

.small-11 {
  width: 91.66667%;
}

.small-push-11 {
  position: relative;
  left: 91.66667%;
}

.small-pull-11 {
  position: relative;
  left: -91.66667%;
}

.small-offset-10 {
  margin-left: 83.33333%;
}

.small-12 {
  width: 100%;
}

.small-offset-11 {
  margin-left: 91.66667%;
}

.small-up-1 > .column,
.small-up-1 > .columns {
  float: left;
  width: 100%;
}

.small-up-1 > .column:nth-of-type(1n),
.small-up-1 > .columns:nth-of-type(1n) {
  clear: none;
}

.small-up-1 > .column:nth-of-type(1n + 1),
.small-up-1 > .columns:nth-of-type(1n + 1) {
  clear: both;
}

.small-up-1 > .column:last-child,
.small-up-1 > .columns:last-child {
  float: left;
}

.small-up-2 > .column,
.small-up-2 > .columns {
  float: left;
  width: 50%;
}

.small-up-2 > .column:nth-of-type(1n),
.small-up-2 > .columns:nth-of-type(1n) {
  clear: none;
}

.small-up-2 > .column:nth-of-type(2n + 1),
.small-up-2 > .columns:nth-of-type(2n + 1) {
  clear: both;
}

.small-up-2 > .column:last-child,
.small-up-2 > .columns:last-child {
  float: left;
}

.small-up-3 > .column,
.small-up-3 > .columns {
  float: left;
  width: 33.33333%;
}

.small-up-3 > .column:nth-of-type(1n),
.small-up-3 > .columns:nth-of-type(1n) {
  clear: none;
}

.small-up-3 > .column:nth-of-type(3n + 1),
.small-up-3 > .columns:nth-of-type(3n + 1) {
  clear: both;
}

.small-up-3 > .column:last-child,
.small-up-3 > .columns:last-child {
  float: left;
}

.small-up-4 > .column,
.small-up-4 > .columns {
  float: left;
  width: 25%;
}

.small-up-4 > .column:nth-of-type(1n),
.small-up-4 > .columns:nth-of-type(1n) {
  clear: none;
}

.small-up-4 > .column:nth-of-type(4n + 1),
.small-up-4 > .columns:nth-of-type(4n + 1) {
  clear: both;
}

.small-up-4 > .column:last-child,
.small-up-4 > .columns:last-child {
  float: left;
}

.small-up-5 > .column,
.small-up-5 > .columns {
  float: left;
  width: 20%;
}

.small-up-5 > .column:nth-of-type(1n),
.small-up-5 > .columns:nth-of-type(1n) {
  clear: none;
}

.small-up-5 > .column:nth-of-type(5n + 1),
.small-up-5 > .columns:nth-of-type(5n + 1) {
  clear: both;
}

.small-up-5 > .column:last-child,
.small-up-5 > .columns:last-child {
  float: left;
}

.small-up-6 > .column,
.small-up-6 > .columns {
  float: left;
  width: 16.66667%;
}

.small-up-6 > .column:nth-of-type(1n),
.small-up-6 > .columns:nth-of-type(1n) {
  clear: none;
}

.small-up-6 > .column:nth-of-type(6n + 1),
.small-up-6 > .columns:nth-of-type(6n + 1) {
  clear: both;
}

.small-up-6 > .column:last-child,
.small-up-6 > .columns:last-child {
  float: left;
}

.small-up-7 > .column,
.small-up-7 > .columns {
  float: left;
  width: 14.28571%;
}

.small-up-7 > .column:nth-of-type(1n),
.small-up-7 > .columns:nth-of-type(1n) {
  clear: none;
}

.small-up-7 > .column:nth-of-type(7n + 1),
.small-up-7 > .columns:nth-of-type(7n + 1) {
  clear: both;
}

.small-up-7 > .column:last-child,
.small-up-7 > .columns:last-child {
  float: left;
}

.small-up-8 > .column,
.small-up-8 > .columns {
  float: left;
  width: 12.5%;
}

.small-up-8 > .column:nth-of-type(1n),
.small-up-8 > .columns:nth-of-type(1n) {
  clear: none;
}

.small-up-8 > .column:nth-of-type(8n + 1),
.small-up-8 > .columns:nth-of-type(8n + 1) {
  clear: both;
}

.small-up-8 > .column:last-child,
.small-up-8 > .columns:last-child {
  float: left;
}

.small-collapse > .column,
.small-collapse > .columns {
  padding-right: 0;
  padding-left: 0;
}

.small-collapse .row {
  margin-right: 0;
  margin-left: 0;
}

.expanded.row .small-collapse.row {
  margin-right: 0;
  margin-left: 0;
}

.small-uncollapse > .column,
.small-uncollapse > .columns {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}

.small-centered {
  margin-right: auto;
  margin-left: auto;
}

.small-centered,
.small-centered:last-child:not(:first-child) {
  float: none;
  clear: both;
}

.small-uncentered,
.small-push-0,
.small-pull-0 {
  position: static;
  float: left;
  margin-right: 0;
  margin-left: 0;
}

@media print, screen and (min-width: 40em) {
  .medium-1 {
    width: 8.33333%;
  }

  .medium-push-1 {
    position: relative;
    left: 8.33333%;
  }

  .medium-pull-1 {
    position: relative;
    left: -8.33333%;
  }

  .medium-offset-0 {
    margin-left: 0%;
  }

  .medium-2 {
    width: 16.66667%;
  }

  .medium-push-2 {
    position: relative;
    left: 16.66667%;
  }

  .medium-pull-2 {
    position: relative;
    left: -16.66667%;
  }

  .medium-offset-1 {
    margin-left: 8.33333%;
  }

  .medium-3 {
    width: 25%;
  }

  .medium-push-3 {
    position: relative;
    left: 25%;
  }

  .medium-pull-3 {
    position: relative;
    left: -25%;
  }

  .medium-offset-2 {
    margin-left: 16.66667%;
  }

  .medium-4 {
    width: 33.33333%;
  }

  .medium-push-4 {
    position: relative;
    left: 33.33333%;
  }

  .medium-pull-4 {
    position: relative;
    left: -33.33333%;
  }

  .medium-offset-3 {
    margin-left: 25%;
  }

  .medium-5 {
    width: 41.66667%;
  }

  .medium-push-5 {
    position: relative;
    left: 41.66667%;
  }

  .medium-pull-5 {
    position: relative;
    left: -41.66667%;
  }

  .medium-offset-4 {
    margin-left: 33.33333%;
  }

  .medium-6 {
    width: 50%;
  }

  .medium-push-6 {
    position: relative;
    left: 50%;
  }

  .medium-pull-6 {
    position: relative;
    left: -50%;
  }

  .medium-offset-5 {
    margin-left: 41.66667%;
  }

  .medium-7 {
    width: 58.33333%;
  }

  .medium-push-7 {
    position: relative;
    left: 58.33333%;
  }

  .medium-pull-7 {
    position: relative;
    left: -58.33333%;
  }

  .medium-offset-6 {
    margin-left: 50%;
  }

  .medium-8 {
    width: 66.66667%;
  }

  .medium-push-8 {
    position: relative;
    left: 66.66667%;
  }

  .medium-pull-8 {
    position: relative;
    left: -66.66667%;
  }

  .medium-offset-7 {
    margin-left: 58.33333%;
  }

  .medium-9 {
    width: 75%;
  }

  .medium-push-9 {
    position: relative;
    left: 75%;
  }

  .medium-pull-9 {
    position: relative;
    left: -75%;
  }

  .medium-offset-8 {
    margin-left: 66.66667%;
  }

  .medium-10 {
    width: 83.33333%;
  }

  .medium-push-10 {
    position: relative;
    left: 83.33333%;
  }

  .medium-pull-10 {
    position: relative;
    left: -83.33333%;
  }

  .medium-offset-9 {
    margin-left: 75%;
  }

  .medium-11 {
    width: 91.66667%;
  }

  .medium-push-11 {
    position: relative;
    left: 91.66667%;
  }

  .medium-pull-11 {
    position: relative;
    left: -91.66667%;
  }

  .medium-offset-10 {
    margin-left: 83.33333%;
  }

  .medium-12 {
    width: 100%;
  }

  .medium-offset-11 {
    margin-left: 91.66667%;
  }

  .medium-up-1 > .column,
  .medium-up-1 > .columns {
    float: left;
    width: 100%;
  }

  .medium-up-1 > .column:nth-of-type(1n),
  .medium-up-1 > .columns:nth-of-type(1n) {
    clear: none;
  }

  .medium-up-1 > .column:nth-of-type(1n + 1),
  .medium-up-1 > .columns:nth-of-type(1n + 1) {
    clear: both;
  }

  .medium-up-1 > .column:last-child,
  .medium-up-1 > .columns:last-child {
    float: left;
  }

  .medium-up-2 > .column,
  .medium-up-2 > .columns {
    float: left;
    width: 50%;
  }

  .medium-up-2 > .column:nth-of-type(1n),
  .medium-up-2 > .columns:nth-of-type(1n) {
    clear: none;
  }

  .medium-up-2 > .column:nth-of-type(2n + 1),
  .medium-up-2 > .columns:nth-of-type(2n + 1) {
    clear: both;
  }

  .medium-up-2 > .column:last-child,
  .medium-up-2 > .columns:last-child {
    float: left;
  }

  .medium-up-3 > .column,
  .medium-up-3 > .columns {
    float: left;
    width: 33.33333%;
  }

  .medium-up-3 > .column:nth-of-type(1n),
  .medium-up-3 > .columns:nth-of-type(1n) {
    clear: none;
  }

  .medium-up-3 > .column:nth-of-type(3n + 1),
  .medium-up-3 > .columns:nth-of-type(3n + 1) {
    clear: both;
  }

  .medium-up-3 > .column:last-child,
  .medium-up-3 > .columns:last-child {
    float: left;
  }

  .medium-up-4 > .column,
  .medium-up-4 > .columns {
    float: left;
    width: 25%;
  }

  .medium-up-4 > .column:nth-of-type(1n),
  .medium-up-4 > .columns:nth-of-type(1n) {
    clear: none;
  }

  .medium-up-4 > .column:nth-of-type(4n + 1),
  .medium-up-4 > .columns:nth-of-type(4n + 1) {
    clear: both;
  }

  .medium-up-4 > .column:last-child,
  .medium-up-4 > .columns:last-child {
    float: left;
  }

  .medium-up-5 > .column,
  .medium-up-5 > .columns {
    float: left;
    width: 20%;
  }

  .medium-up-5 > .column:nth-of-type(1n),
  .medium-up-5 > .columns:nth-of-type(1n) {
    clear: none;
  }

  .medium-up-5 > .column:nth-of-type(5n + 1),
  .medium-up-5 > .columns:nth-of-type(5n + 1) {
    clear: both;
  }

  .medium-up-5 > .column:last-child,
  .medium-up-5 > .columns:last-child {
    float: left;
  }

  .medium-up-6 > .column,
  .medium-up-6 > .columns {
    float: left;
    width: 16.66667%;
  }

  .medium-up-6 > .column:nth-of-type(1n),
  .medium-up-6 > .columns:nth-of-type(1n) {
    clear: none;
  }

  .medium-up-6 > .column:nth-of-type(6n + 1),
  .medium-up-6 > .columns:nth-of-type(6n + 1) {
    clear: both;
  }

  .medium-up-6 > .column:last-child,
  .medium-up-6 > .columns:last-child {
    float: left;
  }

  .medium-up-7 > .column,
  .medium-up-7 > .columns {
    float: left;
    width: 14.28571%;
  }

  .medium-up-7 > .column:nth-of-type(1n),
  .medium-up-7 > .columns:nth-of-type(1n) {
    clear: none;
  }

  .medium-up-7 > .column:nth-of-type(7n + 1),
  .medium-up-7 > .columns:nth-of-type(7n + 1) {
    clear: both;
  }

  .medium-up-7 > .column:last-child,
  .medium-up-7 > .columns:last-child {
    float: left;
  }

  .medium-up-8 > .column,
  .medium-up-8 > .columns {
    float: left;
    width: 12.5%;
  }

  .medium-up-8 > .column:nth-of-type(1n),
  .medium-up-8 > .columns:nth-of-type(1n) {
    clear: none;
  }

  .medium-up-8 > .column:nth-of-type(8n + 1),
  .medium-up-8 > .columns:nth-of-type(8n + 1) {
    clear: both;
  }

  .medium-up-8 > .column:last-child,
  .medium-up-8 > .columns:last-child {
    float: left;
  }

  .medium-collapse > .column,
  .medium-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }

  .medium-collapse .row {
    margin-right: 0;
    margin-left: 0;
  }

  .expanded.row .medium-collapse.row {
    margin-right: 0;
    margin-left: 0;
  }

  .medium-uncollapse > .column,
  .medium-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }

  .medium-centered {
    margin-right: auto;
    margin-left: auto;
  }

  .medium-centered,
  .medium-centered:last-child:not(:first-child) {
    float: none;
    clear: both;
  }

  .medium-uncentered,
  .medium-push-0,
  .medium-pull-0 {
    position: static;
    float: left;
    margin-right: 0;
    margin-left: 0;
  }
}

@media print, screen and (min-width: 64.0625em) {
  .large-1 {
    width: 8.33333%;
  }

  .large-push-1 {
    position: relative;
    left: 8.33333%;
  }

  .large-pull-1 {
    position: relative;
    left: -8.33333%;
  }

  .large-offset-0 {
    margin-left: 0%;
  }

  .large-2 {
    width: 16.66667%;
  }

  .large-push-2 {
    position: relative;
    left: 16.66667%;
  }

  .large-pull-2 {
    position: relative;
    left: -16.66667%;
  }

  .large-offset-1 {
    margin-left: 8.33333%;
  }

  .large-3 {
    width: 25%;
  }

  .large-push-3 {
    position: relative;
    left: 25%;
  }

  .large-pull-3 {
    position: relative;
    left: -25%;
  }

  .large-offset-2 {
    margin-left: 16.66667%;
  }

  .large-4 {
    width: 33.33333%;
  }

  .large-push-4 {
    position: relative;
    left: 33.33333%;
  }

  .large-pull-4 {
    position: relative;
    left: -33.33333%;
  }

  .large-offset-3 {
    margin-left: 25%;
  }

  .large-5 {
    width: 41.66667%;
  }

  .large-push-5 {
    position: relative;
    left: 41.66667%;
  }

  .large-pull-5 {
    position: relative;
    left: -41.66667%;
  }

  .large-offset-4 {
    margin-left: 33.33333%;
  }

  .large-6 {
    width: 50%;
  }

  .large-push-6 {
    position: relative;
    left: 50%;
  }

  .large-pull-6 {
    position: relative;
    left: -50%;
  }

  .large-offset-5 {
    margin-left: 41.66667%;
  }

  .large-7 {
    width: 58.33333%;
  }

  .large-push-7 {
    position: relative;
    left: 58.33333%;
  }

  .large-pull-7 {
    position: relative;
    left: -58.33333%;
  }

  .large-offset-6 {
    margin-left: 50%;
  }

  .large-8 {
    width: 66.66667%;
  }

  .large-push-8 {
    position: relative;
    left: 66.66667%;
  }

  .large-pull-8 {
    position: relative;
    left: -66.66667%;
  }

  .large-offset-7 {
    margin-left: 58.33333%;
  }

  .large-9 {
    width: 75%;
  }

  .large-push-9 {
    position: relative;
    left: 75%;
  }

  .large-pull-9 {
    position: relative;
    left: -75%;
  }

  .large-offset-8 {
    margin-left: 66.66667%;
  }

  .large-10 {
    width: 83.33333%;
  }

  .large-push-10 {
    position: relative;
    left: 83.33333%;
  }

  .large-pull-10 {
    position: relative;
    left: -83.33333%;
  }

  .large-offset-9 {
    margin-left: 75%;
  }

  .large-11 {
    width: 91.66667%;
  }

  .large-push-11 {
    position: relative;
    left: 91.66667%;
  }

  .large-pull-11 {
    position: relative;
    left: -91.66667%;
  }

  .large-offset-10 {
    margin-left: 83.33333%;
  }

  .large-12 {
    width: 100%;
  }

  .large-offset-11 {
    margin-left: 91.66667%;
  }

  .large-up-1 > .column,
  .large-up-1 > .columns {
    float: left;
    width: 100%;
  }

  .large-up-1 > .column:nth-of-type(1n),
  .large-up-1 > .columns:nth-of-type(1n) {
    clear: none;
  }

  .large-up-1 > .column:nth-of-type(1n + 1),
  .large-up-1 > .columns:nth-of-type(1n + 1) {
    clear: both;
  }

  .large-up-1 > .column:last-child,
  .large-up-1 > .columns:last-child {
    float: left;
  }

  .large-up-2 > .column,
  .large-up-2 > .columns {
    float: left;
    width: 50%;
  }

  .large-up-2 > .column:nth-of-type(1n),
  .large-up-2 > .columns:nth-of-type(1n) {
    clear: none;
  }

  .large-up-2 > .column:nth-of-type(2n + 1),
  .large-up-2 > .columns:nth-of-type(2n + 1) {
    clear: both;
  }

  .large-up-2 > .column:last-child,
  .large-up-2 > .columns:last-child {
    float: left;
  }

  .large-up-3 > .column,
  .large-up-3 > .columns {
    float: left;
    width: 33.33333%;
  }

  .large-up-3 > .column:nth-of-type(1n),
  .large-up-3 > .columns:nth-of-type(1n) {
    clear: none;
  }

  .large-up-3 > .column:nth-of-type(3n + 1),
  .large-up-3 > .columns:nth-of-type(3n + 1) {
    clear: both;
  }

  .large-up-3 > .column:last-child,
  .large-up-3 > .columns:last-child {
    float: left;
  }

  .large-up-4 > .column,
  .large-up-4 > .columns {
    float: left;
    width: 25%;
  }

  .large-up-4 > .column:nth-of-type(1n),
  .large-up-4 > .columns:nth-of-type(1n) {
    clear: none;
  }

  .large-up-4 > .column:nth-of-type(4n + 1),
  .large-up-4 > .columns:nth-of-type(4n + 1) {
    clear: both;
  }

  .large-up-4 > .column:last-child,
  .large-up-4 > .columns:last-child {
    float: left;
  }

  .large-up-5 > .column,
  .large-up-5 > .columns {
    float: left;
    width: 20%;
  }

  .large-up-5 > .column:nth-of-type(1n),
  .large-up-5 > .columns:nth-of-type(1n) {
    clear: none;
  }

  .large-up-5 > .column:nth-of-type(5n + 1),
  .large-up-5 > .columns:nth-of-type(5n + 1) {
    clear: both;
  }

  .large-up-5 > .column:last-child,
  .large-up-5 > .columns:last-child {
    float: left;
  }

  .large-up-6 > .column,
  .large-up-6 > .columns {
    float: left;
    width: 16.66667%;
  }

  .large-up-6 > .column:nth-of-type(1n),
  .large-up-6 > .columns:nth-of-type(1n) {
    clear: none;
  }

  .large-up-6 > .column:nth-of-type(6n + 1),
  .large-up-6 > .columns:nth-of-type(6n + 1) {
    clear: both;
  }

  .large-up-6 > .column:last-child,
  .large-up-6 > .columns:last-child {
    float: left;
  }

  .large-up-7 > .column,
  .large-up-7 > .columns {
    float: left;
    width: 14.28571%;
  }

  .large-up-7 > .column:nth-of-type(1n),
  .large-up-7 > .columns:nth-of-type(1n) {
    clear: none;
  }

  .large-up-7 > .column:nth-of-type(7n + 1),
  .large-up-7 > .columns:nth-of-type(7n + 1) {
    clear: both;
  }

  .large-up-7 > .column:last-child,
  .large-up-7 > .columns:last-child {
    float: left;
  }

  .large-up-8 > .column,
  .large-up-8 > .columns {
    float: left;
    width: 12.5%;
  }

  .large-up-8 > .column:nth-of-type(1n),
  .large-up-8 > .columns:nth-of-type(1n) {
    clear: none;
  }

  .large-up-8 > .column:nth-of-type(8n + 1),
  .large-up-8 > .columns:nth-of-type(8n + 1) {
    clear: both;
  }

  .large-up-8 > .column:last-child,
  .large-up-8 > .columns:last-child {
    float: left;
  }

  .large-collapse > .column,
  .large-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }

  .large-collapse .row {
    margin-right: 0;
    margin-left: 0;
  }

  .expanded.row .large-collapse.row {
    margin-right: 0;
    margin-left: 0;
  }

  .large-uncollapse > .column,
  .large-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }

  .large-centered {
    margin-right: auto;
    margin-left: auto;
  }

  .large-centered,
  .large-centered:last-child:not(:first-child) {
    float: none;
    clear: both;
  }

  .large-uncentered,
  .large-push-0,
  .large-pull-0 {
    position: static;
    float: left;
    margin-right: 0;
    margin-left: 0;
  }
}

@media screen and (min-width: 90em) {
  .xlarge-1 {
    width: 8.33333%;
  }

  .xlarge-push-1 {
    position: relative;
    left: 8.33333%;
  }

  .xlarge-pull-1 {
    position: relative;
    left: -8.33333%;
  }

  .xlarge-offset-0 {
    margin-left: 0%;
  }

  .xlarge-2 {
    width: 16.66667%;
  }

  .xlarge-push-2 {
    position: relative;
    left: 16.66667%;
  }

  .xlarge-pull-2 {
    position: relative;
    left: -16.66667%;
  }

  .xlarge-offset-1 {
    margin-left: 8.33333%;
  }

  .xlarge-3 {
    width: 25%;
  }

  .xlarge-push-3 {
    position: relative;
    left: 25%;
  }

  .xlarge-pull-3 {
    position: relative;
    left: -25%;
  }

  .xlarge-offset-2 {
    margin-left: 16.66667%;
  }

  .xlarge-4 {
    width: 33.33333%;
  }

  .xlarge-push-4 {
    position: relative;
    left: 33.33333%;
  }

  .xlarge-pull-4 {
    position: relative;
    left: -33.33333%;
  }

  .xlarge-offset-3 {
    margin-left: 25%;
  }

  .xlarge-5 {
    width: 41.66667%;
  }

  .xlarge-push-5 {
    position: relative;
    left: 41.66667%;
  }

  .xlarge-pull-5 {
    position: relative;
    left: -41.66667%;
  }

  .xlarge-offset-4 {
    margin-left: 33.33333%;
  }

  .xlarge-6 {
    width: 50%;
  }

  .xlarge-push-6 {
    position: relative;
    left: 50%;
  }

  .xlarge-pull-6 {
    position: relative;
    left: -50%;
  }

  .xlarge-offset-5 {
    margin-left: 41.66667%;
  }

  .xlarge-7 {
    width: 58.33333%;
  }

  .xlarge-push-7 {
    position: relative;
    left: 58.33333%;
  }

  .xlarge-pull-7 {
    position: relative;
    left: -58.33333%;
  }

  .xlarge-offset-6 {
    margin-left: 50%;
  }

  .xlarge-8 {
    width: 66.66667%;
  }

  .xlarge-push-8 {
    position: relative;
    left: 66.66667%;
  }

  .xlarge-pull-8 {
    position: relative;
    left: -66.66667%;
  }

  .xlarge-offset-7 {
    margin-left: 58.33333%;
  }

  .xlarge-9 {
    width: 75%;
  }

  .xlarge-push-9 {
    position: relative;
    left: 75%;
  }

  .xlarge-pull-9 {
    position: relative;
    left: -75%;
  }

  .xlarge-offset-8 {
    margin-left: 66.66667%;
  }

  .xlarge-10 {
    width: 83.33333%;
  }

  .xlarge-push-10 {
    position: relative;
    left: 83.33333%;
  }

  .xlarge-pull-10 {
    position: relative;
    left: -83.33333%;
  }

  .xlarge-offset-9 {
    margin-left: 75%;
  }

  .xlarge-11 {
    width: 91.66667%;
  }

  .xlarge-push-11 {
    position: relative;
    left: 91.66667%;
  }

  .xlarge-pull-11 {
    position: relative;
    left: -91.66667%;
  }

  .xlarge-offset-10 {
    margin-left: 83.33333%;
  }

  .xlarge-12 {
    width: 100%;
  }

  .xlarge-offset-11 {
    margin-left: 91.66667%;
  }

  .xlarge-up-1 > .column,
  .xlarge-up-1 > .columns {
    float: left;
    width: 100%;
  }

  .xlarge-up-1 > .column:nth-of-type(1n),
  .xlarge-up-1 > .columns:nth-of-type(1n) {
    clear: none;
  }

  .xlarge-up-1 > .column:nth-of-type(1n + 1),
  .xlarge-up-1 > .columns:nth-of-type(1n + 1) {
    clear: both;
  }

  .xlarge-up-1 > .column:last-child,
  .xlarge-up-1 > .columns:last-child {
    float: left;
  }

  .xlarge-up-2 > .column,
  .xlarge-up-2 > .columns {
    float: left;
    width: 50%;
  }

  .xlarge-up-2 > .column:nth-of-type(1n),
  .xlarge-up-2 > .columns:nth-of-type(1n) {
    clear: none;
  }

  .xlarge-up-2 > .column:nth-of-type(2n + 1),
  .xlarge-up-2 > .columns:nth-of-type(2n + 1) {
    clear: both;
  }

  .xlarge-up-2 > .column:last-child,
  .xlarge-up-2 > .columns:last-child {
    float: left;
  }

  .xlarge-up-3 > .column,
  .xlarge-up-3 > .columns {
    float: left;
    width: 33.33333%;
  }

  .xlarge-up-3 > .column:nth-of-type(1n),
  .xlarge-up-3 > .columns:nth-of-type(1n) {
    clear: none;
  }

  .xlarge-up-3 > .column:nth-of-type(3n + 1),
  .xlarge-up-3 > .columns:nth-of-type(3n + 1) {
    clear: both;
  }

  .xlarge-up-3 > .column:last-child,
  .xlarge-up-3 > .columns:last-child {
    float: left;
  }

  .xlarge-up-4 > .column,
  .xlarge-up-4 > .columns {
    float: left;
    width: 25%;
  }

  .xlarge-up-4 > .column:nth-of-type(1n),
  .xlarge-up-4 > .columns:nth-of-type(1n) {
    clear: none;
  }

  .xlarge-up-4 > .column:nth-of-type(4n + 1),
  .xlarge-up-4 > .columns:nth-of-type(4n + 1) {
    clear: both;
  }

  .xlarge-up-4 > .column:last-child,
  .xlarge-up-4 > .columns:last-child {
    float: left;
  }

  .xlarge-up-5 > .column,
  .xlarge-up-5 > .columns {
    float: left;
    width: 20%;
  }

  .xlarge-up-5 > .column:nth-of-type(1n),
  .xlarge-up-5 > .columns:nth-of-type(1n) {
    clear: none;
  }

  .xlarge-up-5 > .column:nth-of-type(5n + 1),
  .xlarge-up-5 > .columns:nth-of-type(5n + 1) {
    clear: both;
  }

  .xlarge-up-5 > .column:last-child,
  .xlarge-up-5 > .columns:last-child {
    float: left;
  }

  .xlarge-up-6 > .column,
  .xlarge-up-6 > .columns {
    float: left;
    width: 16.66667%;
  }

  .xlarge-up-6 > .column:nth-of-type(1n),
  .xlarge-up-6 > .columns:nth-of-type(1n) {
    clear: none;
  }

  .xlarge-up-6 > .column:nth-of-type(6n + 1),
  .xlarge-up-6 > .columns:nth-of-type(6n + 1) {
    clear: both;
  }

  .xlarge-up-6 > .column:last-child,
  .xlarge-up-6 > .columns:last-child {
    float: left;
  }

  .xlarge-up-7 > .column,
  .xlarge-up-7 > .columns {
    float: left;
    width: 14.28571%;
  }

  .xlarge-up-7 > .column:nth-of-type(1n),
  .xlarge-up-7 > .columns:nth-of-type(1n) {
    clear: none;
  }

  .xlarge-up-7 > .column:nth-of-type(7n + 1),
  .xlarge-up-7 > .columns:nth-of-type(7n + 1) {
    clear: both;
  }

  .xlarge-up-7 > .column:last-child,
  .xlarge-up-7 > .columns:last-child {
    float: left;
  }

  .xlarge-up-8 > .column,
  .xlarge-up-8 > .columns {
    float: left;
    width: 12.5%;
  }

  .xlarge-up-8 > .column:nth-of-type(1n),
  .xlarge-up-8 > .columns:nth-of-type(1n) {
    clear: none;
  }

  .xlarge-up-8 > .column:nth-of-type(8n + 1),
  .xlarge-up-8 > .columns:nth-of-type(8n + 1) {
    clear: both;
  }

  .xlarge-up-8 > .column:last-child,
  .xlarge-up-8 > .columns:last-child {
    float: left;
  }

  .xlarge-collapse > .column,
  .xlarge-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }

  .xlarge-collapse .row {
    margin-right: 0;
    margin-left: 0;
  }

  .expanded.row .xlarge-collapse.row {
    margin-right: 0;
    margin-left: 0;
  }

  .xlarge-uncollapse > .column,
  .xlarge-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }

  .xlarge-centered {
    margin-right: auto;
    margin-left: auto;
  }

  .xlarge-centered,
  .xlarge-centered:last-child:not(:first-child) {
    float: none;
    clear: both;
  }

  .xlarge-uncentered,
  .xlarge-push-0,
  .xlarge-pull-0 {
    position: static;
    float: left;
    margin-right: 0;
    margin-left: 0;
  }
}

.column-block {
  margin-bottom: 1.25rem;
}

.column-block > :last-child {
  margin-bottom: 0;
}

@media print, screen and (min-width: 40em) {
  .column-block {
    margin-bottom: 1.875rem;
  }

  .column-block > :last-child {
    margin-bottom: 0;
  }
}

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

p {
  margin-bottom: 1rem;
  font-size: inherit;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

em,
i {
  font-style: italic;
  line-height: inherit;
}

strong,
b {
  font-weight: bold;
  line-height: inherit;
}

small {
  font-size: 80%;
  line-height: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Coolvetica', sans-serif;
  font-style: normal;
  font-weight: normal;
  color: inherit;
  text-rendering: optimizeLegibility;
}

h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
  line-height: 0;
  color: #cacaca;
}

h1 {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.25rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h3 {
  font-size: 1.1875rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h4 {
  font-size: 1.125rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h5 {
  font-size: 1.0625rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h6 {
  font-size: 1rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

@media print, screen and (min-width: 40em) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  h3 {
    font-size: 1.9375rem;
  }

  h4 {
    font-size: 1.5625rem;
  }

  h5 {
    font-size: 1.25rem;
  }

  h6 {
    font-size: 1rem;
  }
}

a {
  line-height: inherit;
  color: #1a5d91;
  text-decoration: none;
  cursor: pointer;
}

a:hover,
a:focus {
  color: #16507d;
}

a img {
  border: 0;
}

hr {
  clear: both;
  max-width: 79.375rem;
  height: 0;
  margin: 1.25rem auto;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid #cacaca;
  border-left: 0;
}

ul,
ol,
dl {
  margin-bottom: 1rem;
  list-style-position: outside;
  line-height: 1.6;
}

li {
  font-size: inherit;
}

ul {
  margin-left: 1.25rem;
  list-style-type: disc;
}

ol {
  margin-left: 1.25rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin-left: 1.25rem;
  margin-bottom: 0;
}

dl {
  margin-bottom: 1rem;
}

dl dt {
  margin-bottom: 0.3rem;
  font-weight: bold;
}

blockquote {
  margin: 0 0 1rem;
  padding: 0.5625rem 1.25rem 0 1.1875rem;
  border-left: 1px solid #cacaca;
}

blockquote,
blockquote p {
  line-height: 1.6;
  color: #848484;
}

cite {
  display: block;
  font-size: 0.8125rem;
  color: #848484;
}

cite:before {
  content: '— ';
}

abbr {
  border-bottom: 1px dotted #0a0a0a;
  color: #0a0a0a;
  cursor: help;
}

figure {
  margin: 0;
}

code {
  padding: 0.125rem 0.3125rem 0.0625rem;
  border: 1px solid #cacaca;
  background-color: #e6e6e6;
  font-family: Consolas, 'Liberation Mono', Courier, monospace;
  font-weight: normal;
  color: #0a0a0a;
}

kbd {
  margin: 0;
  padding: 0.125rem 0.25rem 0;
  background-color: #e6e6e6;
  font-family: Consolas, 'Liberation Mono', Courier, monospace;
  color: #0a0a0a;
}

.subheader {
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  font-weight: normal;
  line-height: 1.4;
  color: #848484;
}

.lead {
  font-size: 125%;
  line-height: 1.6;
}

.stat {
  font-size: 2.5rem;
  line-height: 1;
}

p + .stat {
  margin-top: -1rem;
}

.no-bullet {
  margin-left: 0;
  list-style: none;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

@media print, screen and (min-width: 40em) {
  .medium-text-left {
    text-align: left;
  }

  .medium-text-right {
    text-align: right;
  }

  .medium-text-center {
    text-align: center;
  }

  .medium-text-justify {
    text-align: justify;
  }
}

@media print, screen and (min-width: 64.0625em) {
  .large-text-left {
    text-align: left;
  }

  .large-text-right {
    text-align: right;
  }

  .large-text-center {
    text-align: center;
  }

  .large-text-justify {
    text-align: justify;
  }
}

@media screen and (min-width: 90em) {
  .xlarge-text-left {
    text-align: left;
  }

  .xlarge-text-right {
    text-align: right;
  }

  .xlarge-text-center {
    text-align: center;
  }

  .xlarge-text-justify {
    text-align: justify;
  }
}

.show-for-print {
  display: none !important;
}

@media print {
  * {
    background: transparent !important;
    box-shadow: none !important;
    color: black !important;
    text-shadow: none !important;
  }

  .show-for-print {
    display: block !important;
  }

  .hide-for-print {
    display: none !important;
  }

  table.show-for-print {
    display: table !important;
  }

  thead.show-for-print {
    display: table-header-group !important;
  }

  tbody.show-for-print {
    display: table-row-group !important;
  }

  tr.show-for-print {
    display: table-row !important;
  }

  td.show-for-print {
    display: table-cell !important;
  }

  th.show-for-print {
    display: table-cell !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: ' (' attr(href) ')';
  }

  .ir a:after,
  a[href^='javascript:']:after,
  a[href^='#']:after {
    content: '';
  }

  abbr[title]:after {
    content: ' (' attr(title) ')';
  }

  pre,
  blockquote {
    border: 1px solid #848484;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

  .print-break-inside {
    page-break-inside: auto;
  }
}

.button {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition:
    background-color 0.25s ease-out,
    color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #bbb;
  color: #fefefe;
}

[data-whatinput='mouse'] .button {
  outline: 0;
}

.button:hover,
.button:focus {
  background-color: #9f9f9f;
  color: #fefefe;
}

.button.tiny {
  font-size: 0.6rem;
}

.button.small {
  font-size: 0.75rem;
}

.button.large {
  font-size: 1.25rem;
}

.button.expanded {
  display: block;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}

.button.primary {
  background-color: #1a5d91;
  color: #fefefe;
}

.button.primary:hover,
.button.primary:focus {
  background-color: #154a74;
  color: #fefefe;
}

.button.secondary {
  background-color: #ff4e00;
  color: #0a0a0a;
}

.button.secondary:hover,
.button.secondary:focus {
  background-color: #cc3e00;
  color: #0a0a0a;
}

.button.success {
  background-color: #74ba56;
  color: #0a0a0a;
}

.button.success:hover,
.button.success:focus {
  background-color: #5b9b3f;
  color: #0a0a0a;
}

.button.warning {
  background-color: #ffae00;
  color: #0a0a0a;
}

.button.warning:hover,
.button.warning:focus {
  background-color: #cc8b00;
  color: #0a0a0a;
}

.button.alert {
  background-color: #cc4b37;
  color: #fefefe;
}

.button.alert:hover,
.button.alert:focus {
  background-color: #a53b2a;
  color: #fefefe;
}

.button.hollow {
  border: 1px solid #1a5d91;
  color: #1a5d91;
}

.button.hollow,
.button.hollow:hover,
.button.hollow:focus {
  background-color: transparent;
}

.button.hollow:hover,
.button.hollow:focus {
  border-color: #0d2f49;
  color: #0d2f49;
}

.button.hollow.primary {
  border: 1px solid #1a5d91;
  color: #1a5d91;
}

.button.hollow.primary:hover,
.button.hollow.primary:focus {
  border-color: #0d2f49;
  color: #0d2f49;
}

.button.hollow.secondary {
  border: 1px solid #ff4e00;
  color: #ff4e00;
}

.button.hollow.secondary:hover,
.button.hollow.secondary:focus {
  border-color: #802700;
  color: #802700;
}

.button.hollow.success {
  border: 1px solid #74ba56;
  color: #74ba56;
}

.button.hollow.success:hover,
.button.hollow.success:focus {
  border-color: #396127;
  color: #396127;
}

.button.hollow.warning {
  border: 1px solid #ffae00;
  color: #ffae00;
}

.button.hollow.warning:hover,
.button.hollow.warning:focus {
  border-color: #805700;
  color: #805700;
}

.button.hollow.alert {
  border: 1px solid #cc4b37;
  color: #cc4b37;
}

.button.hollow.alert:hover,
.button.hollow.alert:focus {
  border-color: #67251a;
  color: #67251a;
}

.button.disabled,
.button[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}

.button.disabled,
.button.disabled:hover,
.button.disabled:focus,
.button[disabled],
.button[disabled]:hover,
.button[disabled]:focus {
  background-color: #1a5d91;
  color: #fefefe;
}

.button.disabled.primary,
.button[disabled].primary {
  opacity: 0.25;
  cursor: not-allowed;
}

.button.disabled.primary,
.button.disabled.primary:hover,
.button.disabled.primary:focus,
.button[disabled].primary,
.button[disabled].primary:hover,
.button[disabled].primary:focus {
  background-color: #1a5d91;
  color: #fefefe;
}

.button.disabled.secondary,
.button[disabled].secondary {
  opacity: 0.25;
  cursor: not-allowed;
}

.button.disabled.secondary,
.button.disabled.secondary:hover,
.button.disabled.secondary:focus,
.button[disabled].secondary,
.button[disabled].secondary:hover,
.button[disabled].secondary:focus {
  background-color: #ff4e00;
  color: #0a0a0a;
}

.button.disabled.success,
.button[disabled].success {
  opacity: 0.25;
  cursor: not-allowed;
}

.button.disabled.success,
.button.disabled.success:hover,
.button.disabled.success:focus,
.button[disabled].success,
.button[disabled].success:hover,
.button[disabled].success:focus {
  background-color: #74ba56;
  color: #0a0a0a;
}

.button.disabled.warning,
.button[disabled].warning {
  opacity: 0.25;
  cursor: not-allowed;
}

.button.disabled.warning,
.button.disabled.warning:hover,
.button.disabled.warning:focus,
.button[disabled].warning,
.button[disabled].warning:hover,
.button[disabled].warning:focus {
  background-color: #ffae00;
  color: #0a0a0a;
}

.button.disabled.alert,
.button[disabled].alert {
  opacity: 0.25;
  cursor: not-allowed;
}

.button.disabled.alert,
.button.disabled.alert:hover,
.button.disabled.alert:focus,
.button[disabled].alert,
.button[disabled].alert:hover,
.button[disabled].alert:focus {
  background-color: #cc4b37;
  color: #fefefe;
}

.button.dropdown::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.4em;
  content: '';
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #fff transparent transparent;
  position: relative;
  top: 0.4em;
  display: inline-block;
  float: right;
  margin-left: 1em;
}

.button.dropdown.hollow::after {
  border-top-color: #bbb;
}

.button.dropdown.hollow.primary::after {
  border-top-color: #1a5d91;
}

.button.dropdown.hollow.secondary::after {
  border-top-color: #ff4e00;
}

.button.dropdown.hollow.success::after {
  border-top-color: #74ba56;
}

.button.dropdown.hollow.warning::after {
  border-top-color: #ffae00;
}

.button.dropdown.hollow.alert::after {
  border-top-color: #cc4b37;
}

.button.arrow-only::after {
  top: -0.1em;
  float: none;
  margin-left: 0;
}

[type='text'],
[type='password'],
[type='date'],
[type='datetime'],
[type='datetime-local'],
[type='month'],
[type='week'],
[type='email'],
[type='number'],
[type='search'],
[type='tel'],
[type='time'],
[type='url'],
[type='color'],
textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 2.4375rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #fefefe;
  box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
  font-family: inherit;
  font-size: 1rem;
  font-weight: normal;
  color: #0a0a0a;
  transition:
    box-shadow 0.5s,
    border-color 0.25s ease-in-out;
  appearance: none;
}

[type='text']:focus,
[type='password']:focus,
[type='date']:focus,
[type='datetime']:focus,
[type='datetime-local']:focus,
[type='month']:focus,
[type='week']:focus,
[type='email']:focus,
[type='number']:focus,
[type='search']:focus,
[type='tel']:focus,
[type='time']:focus,
[type='url']:focus,
[type='color']:focus,
textarea:focus {
  outline: none;
  border: 1px solid #848484;
  background-color: #fefefe;
  box-shadow: 0 0 5px #cacaca;
  transition:
    box-shadow 0.5s,
    border-color 0.25s ease-in-out;
}

textarea {
  max-width: 100%;
}

textarea[rows] {
  height: auto;
}

input::placeholder,
textarea::placeholder {
  color: #cacaca;
}

input:disabled,
input[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: #e6e6e6;
  cursor: not-allowed;
}

[type='submit'],
[type='button'] {
  appearance: none;
  border-radius: 0;
}

input[type='search'] {
  box-sizing: border-box;
}

[type='file'],
[type='checkbox'],
[type='radio'] {
  margin: 0 0 1rem;
}

[type='checkbox'] + label,
[type='radio'] + label {
  display: inline-block;
  vertical-align: baseline;
  margin-left: 0.5rem;
  margin-right: 1rem;
  margin-bottom: 0;
}

[type='checkbox'] + label[for],
[type='radio'] + label[for] {
  cursor: pointer;
}

label > [type='checkbox'],
label > [type='radio'] {
  margin-right: 0.5rem;
}

[type='file'] {
  width: 100%;
}

label {
  display: block;
  margin: 0;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.8;
  color: #0a0a0a;
}

label.middle {
  margin: 0 0 1rem;
  padding: 0.5625rem 0;
}

.help-text {
  margin-top: -0.5rem;
  font-size: 0.8125rem;
  font-style: italic;
  color: #0a0a0a;
}

.input-group {
  display: table;
  width: 100%;
  margin-bottom: 1rem;
}

.input-group > :first-child {
  border-radius: 0 0 0 0;
}

.input-group > :last-child > * {
  border-radius: 0 0 0 0;
}

.input-group-label,
.input-group-field,
.input-group-button,
.input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label {
  margin: 0;
  white-space: nowrap;
  display: table-cell;
  vertical-align: middle;
}

.input-group-label {
  padding: 0 1rem;
  border: 1px solid #cacaca;
  background: #e6e6e6;
  color: #0a0a0a;
  text-align: center;
  white-space: nowrap;
  width: 1%;
  height: 100%;
}

.input-group-label:first-child {
  border-right: 0;
}

.input-group-label:last-child {
  border-left: 0;
}

.input-group-field {
  border-radius: 0;
  height: 2.5rem;
}

.input-group-button {
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  width: 1%;
  height: 100%;
}

.input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label {
  height: 2.5rem;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 1rem;
}

.input-group .input-group-button {
  display: table-cell;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  max-width: 100%;
  margin-bottom: 0.5rem;
}

.fieldset {
  margin: 1.125rem 0;
  padding: 1.25rem;
  border: 1px solid #cacaca;
}

.fieldset legend {
  margin: 0;
  margin-left: -0.1875rem;
  padding: 0 0.1875rem;
  background: #fff;
}

select {
  height: 2.4375rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  appearance: none;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #fefefe;
  font-family: inherit;
  font-size: 1rem;
  line-height: normal;
  color: #0a0a0a;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' style='fill: rgb%28132, 132, 132%29'></polygon></svg>");
  background-origin: content-box;
  background-position: right -1rem center;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  padding-right: 1.5rem;
  transition:
    box-shadow 0.5s,
    border-color 0.25s ease-in-out;
}

@media screen and (min-width: 0\0) {
  select {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==');
  }
}

select:focus {
  outline: none;
  border: 1px solid #848484;
  background-color: #fefefe;
  box-shadow: 0 0 5px #cacaca;
  transition:
    box-shadow 0.5s,
    border-color 0.25s ease-in-out;
}

select:disabled {
  background-color: #e6e6e6;
  cursor: not-allowed;
}

select::-ms-expand {
  display: none;
}

select[multiple] {
  height: auto;
  background-image: none;
}

.is-invalid-input:not(:focus) {
  border-color: #cc4b37;
  background-color: #faedeb;
}

.is-invalid-input:not(:focus)::placeholder {
  color: #cc4b37;
}

.is-invalid-label {
  color: #cc4b37;
}

.form-error {
  display: none;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: bold;
  color: #cc4b37;
}

.form-error.is-visible {
  display: block;
}

.accordion {
  margin-left: 0;
  background: #fefefe;
  list-style-type: none;
}

.accordion-item:first-child > :first-child {
  border-radius: 0 0 0 0;
}

.accordion-item:last-child > :last-child {
  border-radius: 0 0 0 0;
}

.accordion-title {
  position: relative;
  display: block;
  padding: 1.25rem 1rem;
  border: 1px solid #e6e6e6;
  border-bottom: 0;
  font-size: 0.75rem;
  line-height: 1;
  color: #1a5d91;
}

:last-child:not(.is-active) > .accordion-title {
  border-bottom: 1px solid #e6e6e6;
  border-radius: 0 0 0 0;
}

.accordion-title:hover,
.accordion-title:focus {
  background-color: #e6e6e6;
}

.accordion-title::before {
  position: absolute;
  top: 50%;
  right: 1rem;
  margin-top: -0.5rem;
  content: '+';
}

.is-active > .accordion-title::before {
  content: '\2013';
}

.accordion-content {
  display: none;
  padding: 1rem;
  border: 1px solid #e6e6e6;
  border-bottom: 0;
  background-color: #fefefe;
  color: #0a0a0a;
}

:last-child > .accordion-content:last-child {
  border-bottom: 1px solid #e6e6e6;
}

.is-accordion-submenu-parent > a {
  position: relative;
}

.is-accordion-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #1a5d91 transparent transparent;
  position: absolute;
  top: 50%;
  margin-top: -3px;
  right: 1rem;
}

.is-accordion-submenu-parent[aria-expanded='true'] > a::after {
  transform: rotate(180deg);
  transform-origin: 50% 50%;
}

.badge {
  display: inline-block;
  min-width: 2.1em;
  padding: 0.3em;
  border-radius: 50%;
  font-size: 0.6rem;
  text-align: center;
  background: #1a5d91;
  color: #fefefe;
}

.badge.primary {
  background: #1a5d91;
  color: #fefefe;
}

.badge.secondary {
  background: #ff4e00;
  color: #0a0a0a;
}

.badge.success {
  background: #74ba56;
  color: #0a0a0a;
}

.badge.warning {
  background: #ffae00;
  color: #0a0a0a;
}

.badge.alert {
  background: #cc4b37;
  color: #fefefe;
}

.breadcrumbs {
  margin: 0 0 1rem 0;
  list-style: none;
}

.breadcrumbs::before,
.breadcrumbs::after {
  display: table;
  content: ' ';
}

.breadcrumbs::after {
  clear: both;
}

.breadcrumbs li {
  float: left;
  font-size: 0.6875rem;
  color: #0a0a0a;
  cursor: default;
  text-transform: uppercase;
}

.breadcrumbs li:not(:last-child)::after {
  position: relative;
  top: 1px;
  margin: 0 0.75rem;
  opacity: 1;
  content: '/';
  color: #cacaca;
}

.breadcrumbs a {
  color: #1a5d91;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs .disabled {
  color: #cacaca;
  cursor: not-allowed;
}

.close-button {
  position: absolute;
  color: #848484;
  cursor: pointer;
}

[data-whatinput='mouse'] .close-button {
  outline: 0;
}

.close-button:hover,
.close-button:focus {
  color: #0a0a0a;
}

.close-button.small {
  right: 0.66rem;
  top: 0.33em;
  font-size: 1.5em;
  line-height: 1;
}

.close-button,
.close-button.medium {
  right: 1rem;
  top: 0.5rem;
  font-size: 2em;
  line-height: 1;
}

.menu {
  margin: 0;
  list-style-type: none;
}

.menu > li {
  display: table-cell;
  vertical-align: middle;
}

[data-whatinput='mouse'] .menu > li {
  outline: 0;
}

.menu > li > a {
  display: block;
  padding: 0.7rem 1rem;
  line-height: 1;
}

.menu input,
.menu select,
.menu a,
.menu button {
  margin-bottom: 0;
}

.menu > li > a img,
.menu > li > a i,
.menu > li > a svg {
  vertical-align: middle;
}

.menu > li > a img + span,
.menu > li > a i + span,
.menu > li > a svg + span {
  vertical-align: middle;
}

.menu > li > a img,
.menu > li > a i,
.menu > li > a svg {
  margin-right: 0.25rem;
  display: inline-block;
}

.menu > li,
.menu.horizontal > li {
  display: table-cell;
}

.menu.expanded {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.menu.expanded > li:first-child:last-child {
  width: 100%;
}

.menu.vertical > li {
  display: block;
}

@media print, screen and (min-width: 40em) {
  .menu.medium-horizontal > li {
    display: table-cell;
  }

  .menu.medium-expanded {
    display: table;
    width: 100%;
    table-layout: fixed;
  }

  .menu.medium-expanded > li:first-child:last-child {
    width: 100%;
  }

  .menu.medium-vertical > li {
    display: block;
  }
}

@media print, screen and (min-width: 64.0625em) {
  .menu.large-horizontal > li {
    display: table-cell;
  }

  .menu.large-expanded {
    display: table;
    width: 100%;
    table-layout: fixed;
  }

  .menu.large-expanded > li:first-child:last-child {
    width: 100%;
  }

  .menu.large-vertical > li {
    display: block;
  }
}

@media screen and (min-width: 90em) {
  .menu.xlarge-horizontal > li {
    display: table-cell;
  }

  .menu.xlarge-expanded {
    display: table;
    width: 100%;
    table-layout: fixed;
  }

  .menu.xlarge-expanded > li:first-child:last-child {
    width: 100%;
  }

  .menu.xlarge-vertical > li {
    display: block;
  }
}

.menu.simple li {
  display: inline-block;
  vertical-align: top;
  line-height: 1;
}

.menu.simple a {
  padding: 0;
}

.menu.simple li {
  margin-left: 0;
  margin-right: 1rem;
}

.menu.simple.align-right li {
  margin-right: 0;
  margin-left: 1rem;
}

.menu.align-right::before,
.menu.align-right::after {
  display: table;
  content: ' ';
}

.menu.align-right::after {
  clear: both;
}

.menu.align-right > li {
  float: right;
}

.menu.icon-top > li > a {
  text-align: center;
}

.menu.icon-top > li > a img,
.menu.icon-top > li > a i,
.menu.icon-top > li > a svg {
  display: block;
  margin: 0 auto 0.25rem;
}

.menu.icon-top.vertical a > span {
  margin: auto;
}

.menu.nested {
  margin-left: 1rem;
}

.menu .active > a {
  background: #1a5d91;
  color: #fefefe;
}

.menu.menu-bordered li {
  border: 1px solid #e6e6e6;
}

.menu.menu-bordered li:not(:first-child) {
  border-top: 0;
}

.menu.menu-hover li:hover {
  background-color: #e6e6e6;
}

.menu-text {
  padding-top: 0;
  padding-bottom: 0;
  padding: 0.7rem 1rem;
  font-weight: bold;
  line-height: 1;
  color: inherit;
}

.menu-centered {
  text-align: center;
}

.menu-centered > .menu {
  display: inline-block;
  vertical-align: top;
}

.no-js [data-responsive-menu] ul {
  display: none;
}

.slider {
  position: relative;
  height: 0.5rem;
  margin-top: 1.25rem;
  margin-bottom: 2.25rem;
  background-color: #e6e6e6;
  cursor: pointer;
  user-select: none;
  touch-action: none;
}

.slider-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  max-width: 100%;
  height: 0.5rem;
  background-color: #cacaca;
  transition: all 0.2s ease-in-out;
}

.slider-fill.is-dragging {
  transition: all 0s linear;
}

.slider-handle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  left: 0;
  z-index: 1;
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 0;
  background-color: #1a5d91;
  transition: all 0.2s ease-in-out;
  touch-action: manipulation;
}

[data-whatinput='mouse'] .slider-handle {
  outline: 0;
}

.slider-handle:hover {
  background-color: #164f7b;
}

.slider-handle.is-dragging {
  transition: all 0s linear;
}

.slider.disabled,
.slider[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}

.slider.vertical {
  display: inline-block;
  width: 0.5rem;
  height: 12.5rem;
  margin: 0 1.25rem;
  transform: scale(1, -1);
}

.slider.vertical .slider-fill {
  top: 0;
  width: 0.5rem;
  max-height: 100%;
}

.slider.vertical .slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1.4rem;
  height: 1.4rem;
  transform: translateX(-50%);
}

.sticky-container {
  position: relative;
}

.sticky {
  position: relative;
  z-index: 0;
  transform: translate3d(0, 0, 0);
}

.sticky.is-stuck {
  position: fixed;
  z-index: 5;
}

.sticky.is-stuck.is-at-top {
  top: 0;
}

.sticky.is-stuck.is-at-bottom {
  bottom: 0;
}

.sticky.is-anchored {
  position: relative;
  right: auto;
  left: auto;
}

.sticky.is-anchored.is-at-bottom {
  bottom: 0;
}

body.is-reveal-open {
  overflow: hidden;
}

html.is-reveal-open,
html.is-reveal-open body {
  min-height: 100%;
  overflow: hidden;
  position: fixed;
  user-select: none;
}

.reveal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1005;
  display: none;
  background-color: rgba(10, 10, 10, 0.45);
  overflow-y: scroll;
}

.reveal {
  z-index: 1006;
  backface-visibility: hidden;
  display: none;
  padding: 1rem;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #fefefe;
  position: relative;
  top: 100px;
  margin-right: auto;
  margin-left: auto;
  overflow-y: auto;
}

[data-whatinput='mouse'] .reveal {
  outline: 0;
}

@media print, screen and (min-width: 40em) {
  .reveal {
    min-height: 0;
  }
}

.reveal .column,
.reveal .columns {
  min-width: 0;
}

.reveal > :last-child {
  margin-bottom: 0;
}

@media print, screen and (min-width: 40em) {
  .reveal {
    width: 600px;
    max-width: 79.375rem;
  }
}

@media print, screen and (min-width: 40em) {
  .reveal .reveal {
    right: auto;
    left: auto;
    margin: 0 auto;
  }
}

.reveal.collapse {
  padding: 0;
}

@media print, screen and (min-width: 40em) {
  .reveal.tiny {
    width: 30%;
    max-width: 79.375rem;
  }
}

@media print, screen and (min-width: 40em) {
  .reveal.small {
    width: 50%;
    max-width: 79.375rem;
  }
}

@media print, screen and (min-width: 40em) {
  .reveal.large {
    width: 90%;
    max-width: 79.375rem;
  }
}

.reveal.full {
  top: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  height: 100vh;
  min-height: 100vh;
  margin-left: 0;
  border: 0;
  border-radius: 0;
}

@media screen and (max-width: 39.9375em) {
  .reveal {
    top: 0;
    left: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    height: 100vh;
    min-height: 100vh;
    margin-left: 0;
    border: 0;
    border-radius: 0;
  }
}

.reveal.without-overlay {
  position: fixed;
}

.top-bar {
  padding: 0.5rem;
}

.top-bar::before,
.top-bar::after {
  display: table;
  content: ' ';
}

.top-bar::after {
  clear: both;
}

.top-bar,
.top-bar ul {
  background-color: #e6e6e6;
}

.top-bar input {
  max-width: 200px;
  margin-right: 1rem;
}

.top-bar .input-group-field {
  width: 100%;
  margin-right: 0;
}

.top-bar input.button {
  width: auto;
}

.top-bar .top-bar-left,
.top-bar .top-bar-right {
  width: 100%;
}

@media print, screen and (min-width: 40em) {
  .top-bar .top-bar-left,
  .top-bar .top-bar-right {
    width: auto;
  }
}

@media screen and (max-width: 64em) {
  .top-bar.stacked-for-medium .top-bar-left,
  .top-bar.stacked-for-medium .top-bar-right {
    width: 100%;
  }
}

@media screen and (max-width: 89.9375em) {
  .top-bar.stacked-for-large .top-bar-left,
  .top-bar.stacked-for-large .top-bar-right {
    width: 100%;
  }
}

@media screen and (max-width: 99.9375em) {
  .top-bar.stacked-for-xlarge .top-bar-left,
  .top-bar.stacked-for-xlarge .top-bar-right {
    width: 100%;
  }
}

.top-bar-title {
  display: inline-block;
  float: left;
  padding: 0.5rem 1rem 0.5rem 0;
}

.top-bar-title .menu-icon {
  bottom: 2px;
}

.top-bar-left {
  float: left;
}

.top-bar-right {
  float: right;
}

.hide {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

@media screen and (max-width: 39.9375em) {
  .hide-for-small-only {
    display: none !important;
  }
}

@media screen and (max-width: 0em), screen and (min-width: 40em) {
  .show-for-small-only {
    display: none !important;
  }
}

@media print, screen and (min-width: 40em) {
  .hide-for-medium {
    display: none !important;
  }
}

@media screen and (max-width: 39.9375em) {
  .show-for-medium {
    display: none !important;
  }
}

@media screen and (min-width: 40em) and (max-width: 64em) {
  .hide-for-medium-only {
    display: none !important;
  }
}

@media screen and (max-width: 39.9375em), screen and (min-width: 64.0625em) {
  .show-for-medium-only {
    display: none !important;
  }
}

@media print, screen and (min-width: 64.0625em) {
  .hide-for-large {
    display: none !important;
  }
}

@media screen and (max-width: 64em) {
  .show-for-large {
    display: none !important;
  }
}

@media screen and (min-width: 64.0625em) and (max-width: 89.9375em) {
  .hide-for-large-only {
    display: none !important;
  }
}

@media screen and (max-width: 64em), screen and (min-width: 90em) {
  .show-for-large-only {
    display: none !important;
  }
}

@media screen and (min-width: 90em) {
  .hide-for-xlarge {
    display: none !important;
  }
}

@media screen and (max-width: 89.9375em) {
  .show-for-xlarge {
    display: none !important;
  }
}

@media screen and (min-width: 90em) and (max-width: 99.9375em) {
  .hide-for-xlarge-only {
    display: none !important;
  }
}

@media screen and (max-width: 89.9375em), screen and (min-width: 100em) {
  .show-for-xlarge-only {
    display: none !important;
  }
}

.show-for-sr,
.show-on-focus {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.show-on-focus:active,
.show-on-focus:focus {
  position: static !important;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
}

.show-for-landscape,
.hide-for-portrait {
  display: block !important;
}

@media screen and (orientation: landscape) {
  .show-for-landscape,
  .hide-for-portrait {
    display: block !important;
  }
}

@media screen and (orientation: portrait) {
  .show-for-landscape,
  .hide-for-portrait {
    display: none !important;
  }
}

.hide-for-landscape,
.show-for-portrait {
  display: none !important;
}

@media screen and (orientation: landscape) {
  .hide-for-landscape,
  .show-for-portrait {
    display: none !important;
  }
}

@media screen and (orientation: portrait) {
  .hide-for-landscape,
  .show-for-portrait {
    display: block !important;
  }
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-center {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.clearfix::before,
.clearfix::after {
  display: table;
  content: ' ';
}

.clearfix::after {
  clear: both;
}

.slide-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-down.mui-enter.mui-enter-active {
  transform: translateY(0);
}

.slide-in-left.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-left.mui-enter.mui-enter-active {
  transform: translateX(0);
}

.slide-in-up.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-up.mui-enter.mui-enter-active {
  transform: translateY(0);
}

.slide-in-right.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-right.mui-enter.mui-enter-active {
  transform: translateX(0);
}

.slide-out-down.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-down.mui-leave.mui-leave-active {
  transform: translateY(100%);
}

.slide-out-right.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-right.mui-leave.mui-leave-active {
  transform: translateX(100%);
}

.slide-out-up.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-up.mui-leave.mui-leave-active {
  transform: translateY(-100%);
}

.slide-out-left.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-left.mui-leave.mui-leave-active {
  transform: translateX(-100%);
}

.fade-in.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  opacity: 0;
  transition-property: opacity;
}

.fade-in.mui-enter.mui-enter-active {
  opacity: 1;
}

.fade-out.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  opacity: 1;
  transition-property: opacity;
}

.fade-out.mui-leave.mui-leave-active {
  opacity: 0;
}

.hinge-in-from-top.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(-90deg);
  transform-origin: top;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-top.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-right.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(-90deg);
  transform-origin: right;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-right.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-bottom.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(90deg);
  transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-bottom.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-left.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(90deg);
  transform-origin: left;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-left.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-middle-x.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(-90deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-middle-x.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-middle-y.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(-90deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-middle-y.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-out-from-top.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: top;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-top.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(90deg);
  opacity: 0;
}

.hinge-out-from-right.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: right;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-right.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(90deg);
  opacity: 0;
}

.hinge-out-from-bottom.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-bottom.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0;
}

.hinge-out-from-left.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: left;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-left.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0;
}

.hinge-out-from-middle-x.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-middle-x.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(90deg);
  opacity: 0;
}

.hinge-out-from-middle-y.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-middle-y.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(90deg);
  opacity: 0;
}

.scale-in-up.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(0.5);
  transition-property: transform, opacity;
  opacity: 0;
}

.scale-in-up.mui-enter.mui-enter-active {
  transform: scale(1);
  opacity: 1;
}

.scale-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1.5);
  transition-property: transform, opacity;
  opacity: 0;
}

.scale-in-down.mui-enter.mui-enter-active {
  transform: scale(1);
  opacity: 1;
}

.scale-out-up.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1;
}

.scale-out-up.mui-leave.mui-leave-active {
  transform: scale(1.5);
  opacity: 0;
}

.scale-out-down.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1;
}

.scale-out-down.mui-leave.mui-leave-active {
  transform: scale(0.5);
  opacity: 0;
}

.spin-in.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(-0.75turn);
  transition-property: transform, opacity;
  opacity: 0;
}

.spin-in.mui-enter.mui-enter-active {
  transform: rotate(0);
  opacity: 1;
}

.spin-out.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1;
}

.spin-out.mui-leave.mui-leave-active {
  transform: rotate(0.75turn);
  opacity: 0;
}

.spin-in-ccw.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0.75turn);
  transition-property: transform, opacity;
  opacity: 0;
}

.spin-in-ccw.mui-enter.mui-enter-active {
  transform: rotate(0);
  opacity: 1;
}

.spin-out-ccw.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1;
}

.spin-out-ccw.mui-leave.mui-leave-active {
  transform: rotate(-0.75turn);
  opacity: 0;
}

.slow {
  transition-duration: 750ms !important;
}

.fast {
  transition-duration: 250ms !important;
}

.linear {
  transition-timing-function: linear !important;
}

.ease {
  transition-timing-function: ease !important;
}

.ease-in {
  transition-timing-function: ease-in !important;
}

.ease-out {
  transition-timing-function: ease-out !important;
}

.ease-in-out {
  transition-timing-function: ease-in-out !important;
}

.bounce-in {
  transition-timing-function: cubic-bezier(
    0.485,
    0.155,
    0.24,
    1.245
  ) !important;
}

.bounce-out {
  transition-timing-function: cubic-bezier(
    0.485,
    0.155,
    0.515,
    0.845
  ) !important;
}

.bounce-in-out {
  transition-timing-function: cubic-bezier(
    0.76,
    -0.245,
    0.24,
    1.245
  ) !important;
}

.short-delay {
  transition-delay: 300ms !important;
}

.long-delay {
  transition-delay: 700ms !important;
}

.shake {
  animation-name: shake-7;
}

@keyframes shake-7 {
  0%,
  10%,
  20%,
  30%,
  40%,
  50%,
  60%,
  70%,
  80%,
  90% {
    transform: translateX(7%);
  }
  5%,
  15%,
  25%,
  35%,
  45%,
  55%,
  65%,
  75%,
  85%,
  95% {
    transform: translateX(-7%);
  }
}

.spin-cw {
  animation-name: spin-cw-1turn;
}

@keyframes spin-cw-1turn {
  0% {
    transform: rotate(-1turn);
  }
  100% {
    transform: rotate(0);
  }
}

.spin-ccw {
  animation-name: spin-ccw-1turn;
}

@keyframes spin-ccw-1turn {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-1turn);
  }
}

.wiggle {
  animation-name: wiggle-7deg;
}

@keyframes wiggle-7deg {
  40%,
  50%,
  60% {
    transform: rotate(7deg);
  }
  35%,
  45%,
  55%,
  65% {
    transform: rotate(-7deg);
  }
  0%,
  30%,
  70%,
  100% {
    transform: rotate(0);
  }
}

.shake,
.spin-cw,
.spin-ccw,
.wiggle {
  animation-duration: 500ms;
}

.infinite {
  animation-iteration-count: infinite;
}

.slow {
  animation-duration: 750ms !important;
}

.fast {
  animation-duration: 250ms !important;
}

.linear {
  animation-timing-function: linear !important;
}

.ease {
  animation-timing-function: ease !important;
}

.ease-in {
  animation-timing-function: ease-in !important;
}

.ease-out {
  animation-timing-function: ease-out !important;
}

.ease-in-out {
  animation-timing-function: ease-in-out !important;
}

.bounce-in {
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}

.bounce-out {
  animation-timing-function: cubic-bezier(
    0.485,
    0.155,
    0.515,
    0.845
  ) !important;
}

.bounce-in-out {
  animation-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}

.short-delay {
  animation-delay: 300ms !important;
}

.long-delay {
  animation-delay: 700ms !important;
}
