html,
body,
.corpo {
  font-family: Arial;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

header {
  /*overflow: hidden;
  position: fixed;
  top: 0;*/
  width: 100%;
  padding: 20px 0px 20px 0px;
  background: #2a5dac;
  color: white;
  font-size: 15px;
  height: 75px;
}

section {
  min-height: 500px;
}

.form-body {
  background: #f3f7f0;
}

.header-container {
  max-width: 950px;
  width: 95%;
  color: white;
  margin: auto;
}

.footer-style {
  width: 100%;
  padding: 20px 0px 20px 0px;
  background: #0f3278;
  color: white;
  font-size: 15px;
  min-height: 70px;
  margin-top: 50px;
  border-top: 2px black solid;
}

.header-logo {
  display: flex;
  float: left;
}

.header-logo a {
  color: white;
  text-align: left;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 27px;
  margin: auto;
}

.header-logo img {
  height: 57px;
  width: auto;
  display: block;
  margin: 0 auto;
  position: absolute;
  top: 10px;
}

.header-nav-area {
  display: flex;
  float: right;
  text-align: right;
  margin: auto;
  padding-top: 0.5%;
}

header nav {
  text-align: right;
}

.header-button {
  border: 1px white solid;
  padding-top: 16px;
  padding-bottom: 20px;
  padding-right: 30px;
  margin-left: 10px;
  cursor: pointer;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.header-button:hover {
  background-color: rgb(70, 92, 187);
}

header nav a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  padding-left: 20px;
}

.numero-cart {
  font-size: 16px;
  color: red;
  background-color: white;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  position: absolute;
  top: 35px;
  text-align: center;
  vertical-align: middle;
  border: 0.5px solid black;
  z-index: 1;
  margin-left: 45px;
}

.numero-cart div {
  font-size: 14px;
  font-weight: bold;
  padding-right: 1px;
  padding-bottom: 5px;
}

.nav-icon {
  margin-right: 35px;
}

.nav-icon img {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 15px;
}

.sanduiche-icon {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 15px;
  right: 20px;
  display: none;
}

.sanduiche-icon img {
  width: 40px;
  height: 40px;
}

.cart-icon {
  right: 80px;
}

.sanduiche-menu {
  width: 150px;
  height: 120px;
  background-color: white;
  display: none;
  position: absolute;
  right: 15px;
  top: 60px;
  padding: 20px;
  text-align: left;
  border: 1px black solid;
}

.menu {
  display: flex;
  flex-direction: column;
  width: 150px;
  border-radius: 3px;
  padding: 0;
  padding-top: 5px;
  position: absolute;
  top: 34px;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: none;
}

.menu-md {
  width: 185px;
}

.menu-lg {
  width: 250px;
}

.menu > li {
  list-style: none;
  background-color: white;
  padding-top: 10px;
  padding-bottom: 10px;
  list-style-type: none;
  text-align: right;
  border: 1px solid black;
  border-bottom: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.menu-admin {
  display: flex;
  flex-direction: column;
  width: 260px;
  border-radius: 3px;
  padding: 0;
  padding-top: 5px;
  position: absolute;
  top: 34px;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: none;
  height: 300px;
  overflow-y: scroll;
}

.menu-admin > li {
  text-align: left;
}

.menu-drop-area {
  position: relative;
  display: inline-block;
}

.menu-drop-area:hover > ul {
  display: block;
}

.menu > li:hover {
  background-color: lightgray;
  cursor: pointer;
}

.menu > li:last-of-type {
  border-bottom: 1px solid black;
}

.menu a {
  border-bottom: none;
  color: black;
  font-size: 15px;
  text-decoration: none;
  font-weight: bold;
  margin-right: 15px;
  margin-left: 15px;
}

.TituloPagina {
  width: 100%;
  background-color: #0f3278;
  padding: 30px;
  padding-top: 35px;
  text-align: center;
}

.TituloPagina h1 {
  color: white;
}

.FormDePesquisa {
  padding-top: 25px;
  padding-bottom: 25px;
}

.FormDePesquisa h5 {
  margin-top: 5px;
  text-align: right;
}

.FormDePesquisa select,
.FormDePesquisa input {
  border: 1px solid gray;
  border-radius: 7px;
}

.FormDePesquisa button {
  background-color: #00164c;
  border: 1px solid gray;
  border-radius: 9px;
}

.FormDePesquisa button:hover {
  background-color: #0f3278;
}

.separador {
  background-color: #e5e5e5;
  border-bottom: gray 1px solid;
  width: 100%;
  padding-top: 2px;
  padding-bottom: 2px;
}

.leveMargemAcima {
  padding-top: 15px;
}

.ocultarPC {
  display: none;
}

.estiloLink {
  color: blue;
  cursor: pointer;
}

.estiloLink:hover {
  text-decoration: underline;
}

.mask-dinheiro {
  text-align: right;
}

.overlayPage {
  position: fixed;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.btn-input-addon {
  display: flex;
  height: 38px;
  width: 38px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: #007bff;
  color: white;
  padding: 0px;
}

.noselection {
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.tingle-modal {
  overflow-y: scroll !important;
}

@media (max-width: 810px) {
  header {
    position: fixed;
    z-index: 100;
    height: 60px;
  }
  header nav {
    display: none;
  }
  .header-logo img {
    height: 70%;
    width: auto;
  }
  .sanduiche-icon {
    display: inline-block;
    margin-left: 10px;
  }
  .sanduiche-icon img {
    width: 30px;
    height: 30px;
  }
  .ocultarPC {
    display: block;
  }
  .TituloPagina {
    height: 100px;
  }
  .TituloPagina h1 {
    display: none;
  }
}

@media (max-width: 767px) {
  .FormDePesquisa h5 {
    text-align: left;
  }
  .leveMargemAcimaQuandoMobile {
    padding-top: 15px;
  }
  .rightQuandoMobile {
    text-align: right;
  }
}
