
/* estilo custom azul */
.bg-custom-blue{
    background-color: #0074BC !important;
    color: #fff !important;
}

.bg-custom-blue-dark{
  background-color: #01578d !important;
  color: #fff !important;
}

.border-custom-blue{
  border: #0074BC solid 1px !important;
}
.bg-border-custom-blue{
    border-color: #0074BC !important;
}

.btn-outline-custom-blue {
    border-color: #0074BC !important;
    color: #0074BC !important;
}

.btn-outline-custom-blue:hover {
    background-color: #0074BC !important;
    color: #fff !important;
}

.btn-custom-blue{
    background-color: #0074BC !important;
    color: #fff !important;
}

.btn-custom-blue:hover {
    background-color: #01578d !important;
    color: #fff !important;
}

.btn-custom-white-blue{
  background-color: #fff !important;
  color: #0074BC !important;
}

.btn-custom-white-blue:hover {
  background-color: #0074BC !important;
  color: #fff !important;
}

.text-custom-blue {
    color: #0074BC !important;
}

.page-item-custom-blue {
  background-color: #0074BC!important;
  color: #fff!important;
}

.checkbox-custom-blue:checked {
  background-color: #0074BC !important; 
  box-shadow: 0 0 5px #01578d !important;
}

/* estilo custom verde */
.bg-custom-green{
    background-color: #7ECD07 !important;
    color: #fff !important;
}

.bg-border-custom-green{
    border-color: #7ECD07 !important;
}

.border-custom-green{
  border: #7ECD07 solid 1px !important;
}

.btn-outline-custom-green {
    border-color: #7ECD07 !important;
    color: #7ECD07 !important;
}

.btn-outline-custom-green:hover {
    background-color: #7ECD07 !important;
    color: #fff !important;
}

.btn-custom-green{
    background-color: #7ECD07 !important;
    color: #fff !important;
}

.btn-custom-green:hover {
    background-color: #568f01 !important;
    color: #fff !important;
}

.text-custom-green {
    color: #7ECD07;
}

.page-item-custom-green {
  background-color: #7ECD07!important;
  color: #fff!important;
}

/*estilo metal*/
.bg-custom-metal{
  background-color: #9e9e9e !important;
  color: #fff !important;
}

.bg-custom-metal-light{
  background-color: #bababa !important;
  color: #fff !important;
}

.btn-custom-metal{
  background-color: #bababa !important;
  color: #fff !important;
}

.btn-custom-metal:hover {
  background-color: #9e9e9e !important;
  color: #fff !important;
}

/*outros css*/

.bg-border-custom-gradiente{
    
    border: 2px solid;
    border-image: linear-gradient(to bottom, #7ECD07 , #0074BC);
    border-image-slice: 1;
    padding: 0;
    margin: 10px;
    
}
.bg-gradient-custom {
    background: linear-gradient(to bottom , #7ECD07 , #0074BC) !important;
}

.bg-gradient-custom-top {
  background: linear-gradient(to top , #7ECD07 , #0074BC) !important;
}

.bg-gradient-custom-metal {
  background: linear-gradient(to top , #bababa , #9e9e9e) !important;
  color: white;
}

.bg-custom-wave {
  background-image: url(../img/bg-wave.jpg) !important;
}
.cart-zoom:hover {
    zoom: 1.1 !important;
}
.masthead-content-custom {
    position: relative;
    background-color: transparent;
    overflow: hidden;
}
.masthead-content-custom .container {
  position: relative;
  z-index: 1; /* Define uma ordem de sobreposição para o texto */
}

.circle {
  position: absolute;
  width: 20vw; /* Diâmetro dos círculos */
  height: 20vw; /* Diâmetro dos círculos */
  background-color: transparent;
  border-radius: 50%; /* Transforma o elemento em um círculo */
}

.green {
  background: linear-gradient(to bottom, #7ECD07, #0074BC );
}

.blue {
  background: linear-gradient(to bottom, #0074BC , #7ECD07);
}

.hidden-text {
  display: none;
}
#products-container{
  width: 100%; 
  height: 95vh;
  overflow-x: auto;
  
}

.loading-container {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.spinner {
    border: 8px solid #7ECD07;
    border-top: 8px solid #0074BC;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.preview-link {
  position: relative;
  display: inline-block;
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  background-color: rgba(0, 116, 188, 0.7); /* Cor do overlay */
  color: white; /* Cor do texto */
  padding: 10px;
  border-radius: 10px;
  transition: opacity 0.3s ease;
}

.preview-link:hover .overlay-text {
  opacity: 1;
}

.preview-image {
  transition: filter 0.3s ease;
}

.preview-link:hover {
  border-radius: 10px;
  filter: brightness(70%); /* Ajuste o valor conforme necessário para a intensidade desejada */
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  max-width: 500px;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
}

.modal-content-img {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 300px;
  max-width: 1200px;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
}
  
.scrollable-div {
  overflow-y: auto;
  max-height: 400px;
  min-height: 100px;
}

.placeholder-custom::placeholder {
  color: #999 !important; /* Substitua #999 pela cor desejada para o placeholder */
  text-align: right !important;
}

.style-mudar-password{
  max-height: 1200px;
  min-height: 200px;
  min-width: 300px;
  max-width: 1600px;
  background: #fff;
  padding: 20px;
}

.border-custom-white{
  border: 1px solid white;
  
}

/*teste*/

.otp-field {
  flex-direction: row;
  column-gap: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.otp-field input {
  height: 45px;
  width: 42px;
  border-radius: 6px;
  outline: none;
  font-size: 1.125rem;
  text-align: center;
  border: 1px solid #ddd;
}
.otp-field input:focus {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}
.otp-field input::-webkit-inner-spin-button,
.otp-field input::-webkit-outer-spin-button {
  display: none;
}

.resend {
  font-size: 12px;
}

.footer {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: black;
  font-size: 12px;
  text-align: right;
  font-family: monospace;
}

.footer a {
  color: black;
  text-decoration: none;
  
}




