body {
  font-family: "Montserrat", sans-serif;
}

.bi {
  display: inline-block;
  width: 1rem;
  height: 1rem;
}

/*
 * Sidebar
 */

@media (min-width: 768px) {
  .sidebar .offcanvas-lg {
    position: -webkit-sticky;
    position: sticky;
    top: 48px;
  }

  .navbar-search {
    display: block;
  }
}

.sidebar .nav-link {
  font-size: .875rem;
  font-weight: 500;
}

.sidebar .nav-link.active {
  color: #2470dc;
}

.sidebar-heading {
  font-size: .75rem;
}

/*
 * Navbar
 

.navbar-brand {
  padding-top: .75rem;
  padding-bottom: .75rem;
  background-color: rgba(0, 0, 0, .25);
  box-shadow: inset -1px 0 0 rgba(0, 0, 0, .25);
}*/

.navbar .form-control {
  padding: .75rem 1rem;
}

.form-signin {
  max-width: 330px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 600px) {
  #formSignin {
    width: 95%;
    height: 100%;
  }
}

@media screen and (min-width: 600px) {
  #formSignin {
    margin: calc(100% / 2 - 500px);
    width: 500px;
    height: 500px;
  }
}

.form-signin .form-floating:focus-within {
  z-index: 2;
}

.form-floating {
  width: 100%;
  background-color: #FFFFFF;
  margin: 1rem 0px;
}

.form-signin input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.form-signin input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.flexBox {
  display: flex;
  /* Ativa o Flexbox */
  justify-content: center;
  /* Centraliza horizontalmente */
  align-items: center;
  /* Centraliza verticalmente */
  height: 100vh;
  /* Altura total da tela (Viewport Height) */
  width: 100vw;
}

.flexBox-vtcl {
  display: flex;
  /* Ativa o Flexbox */
  flex-direction: column;
  /*Ativa em vertical*/
  justify-content: center;
  /* Centraliza horizontalmente */
  align-items: center;
  /* Centraliza verticalmente */
  height: 100vh;
  /* Altura total da tela (Viewport Height) */
  width: 100vw;
}

.logo-company {
  min-width: 30px;
  max-width: 30px;
  min-height: 30px;
  max-height: 30px;
  border-radius: 50%;
  border: 1px solid limegreen;
  margin-right: .50rem;
  margin-top: -.20rem;
}

.left {
  float: left;
}

.right {
  float: right;
}

.em-linha-horizontal {
  display: flex;
  flex-direction: row;
  align-content: flex-start;
  justify-content: space-between;
  align-items: center;
}

.em-linha-vertical {
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  justify-content: space-between;
  align-items: center;
}

.mr-5 {
  margin-right: 5px;
}

.ml-5 {
  margin-left: 5px;
}

.medium {
  font-size: 2.75rem;
}

.strike {
  position: absolute;
  top: -10px;
  left: calc(50% - 10px);
  width: 20px;
  height: 20px;
  /*background-color: #0d6bf6;*/
  transform: rotate(45deg);
  z-index: 1;
}

.xl {
  font-size: 6rem;
  text-align: center;
}

.price {
  /*position: absolute;*/
  background-color: green;
  padding: 2px .50rem;
  border-bottom-right-radius: .375rem;
  border-top-left-radius: .375rem;
  color: #FFF;
}

.discount {
  position: absolute;
  right: 0;
  background-color: red;
  padding: 2px .50rem;
  color: #FFF;
  border-top-right-radius: .375rem;
  border-bottom-left-radius: .375rem;
}

.taxado {
  font-style: italic;
  font-weight: bold;
  text-decoration: line-through;
}

.nao-taxado {
  font-style: italic;
  font-weight: bold;
  text-decoration: none;
  color: #FFFFFF;
}

.div-price {
  position: absolute;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: green;
  border-top-left-radius: .375rem;
  border-bottom-right-radius: .375rem;
  padding: 0 .50rem;
}

.caroussel-inactive {
  background-color: red !important;
}

.caroussel-active {
  background-color: green !important;
}

.carousel-indicators .active {
  opacity: 1 !important;
  background-color: green !important;
  height: 3px !important;
  width: 30px !important;
  border-radius: 3px !important;
  border: 1px solid green !important;
  transition: all 1s;
}

.carousel-indicators [data-bs-target] {
  opacity: .7;
  background-color: blue;
  width: 3px;
  border-radius: 3px;
  border: 1px solid blue;
  transition: all 1s;
}

.quantity_cart {
  position: relative;
  top: -16px;
  right: 8px;
  background: #057ff9;
  border-radius: 2px;
  padding: 1px 3px;
  font-size: .575rem;
  color: white;
}

.form-speck {
  border: 1px solid #CACACA;
  background: linear-gradient(to bottom, aliceblue, #CACACA, aliceblue 100%);
  border-radius: .75rem;
  padding: .375rem .375rem;
}