
/*
  desabilitar eventos do mouse
*/

.disabled{
  pointer-events: none;
}

.highlight_novaeng:hover {
	background-color: #bcffed;
}



/*
    texto com borda
    https://stackoverflow.com/questions/2570972/css-font-border
*/



.text_with_1px_border_gray
{
    text-shadow: 
        -1px -1px 0px rgb(65, 65, 65),
         0px -1px 0px rgb(65, 65, 65),
         1px -1px 0px rgb(65, 65, 65),
        -1px  0px 0px rgb(65, 65, 65),
         1px  0px 0px rgb(65, 65, 65),
        -1px  1px 0px rgb(65, 65, 65),
         0px  1px 0px rgb(65, 65, 65),
         1px  1px 0px rgb(65, 65, 65);
}



.text_with_1px_border
{
    text-shadow: 
        -1px -1px 0px #000,
         0px -1px 0px #000,
         1px -1px 0px #000,
        -1px  0px 0px #000,
         1px  0px 0px #000,
        -1px  1px 0px #000,
         0px  1px 0px #000,
         1px  1px 0px #000;
}

.text_with_2px_border
{
    text-shadow: 
        /* first layer at 1px */
        -1px -1px 0px #000,
         0px -1px 0px #000,
         1px -1px 0px #000,
        -1px  0px 0px #000,
         1px  0px 0px #000,
        -1px  1px 0px #000,
         0px  1px 0px #000,
         1px  1px 0px #000,
        /* second layer at 2px */
        -2px -2px 0px #000,
        -1px -2px 0px #000,
         0px -2px 0px #000,
         1px -2px 0px #000,
         2px -2px 0px #000,
         2px -1px 0px #000,
         2px  0px 0px #000,
         2px  1px 0px #000,
         2px  2px 0px #000,
         1px  2px 0px #000,
         0px  2px 0px #000,
        -1px  2px 0px #000,
        -2px  2px 0px #000,
        -2px  1px 0px #000,
        -2px  0px 0px #000,
        -2px -1px 0px #000;
}

/*
    para um png ter sombra projetada no mapa
*/

.drop-shadow {
    filter: drop-shadow(7px 7px 7px #666666);
    -webkit-filter: drop-shadow(7px 7px 7px #666666);
}

.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


.sombra_texto_simples {
    text-shadow: 2px 2px 3px black;
}



/*
  botao com bevel (tentativa)

*/

.button-51 {
  display: inline-block;
  color: #fff;
  text-shadow: 0 0 2px rgba(0,0,0,.3);
  font-family: sans-serif;
  
  
  box-shadow:
      inset 0 0 2px 0 rgba(255,255,255,.4),
      inset 0 0 3px 0 rgba(0,0,0,.4),
      inset 0 0 3px 5px rgba(0,0,0,.05),
      2px 2px 4px 0 rgba(0,0,0,.25);
   
  border-radius: 12px;
  padding: 8px 16px;
  font-size: 12px;
  line-height: 14px;
  position: relative;
  
  transition: background 250ms;
  
}

.button-51.gray { background: gray; }
.button-51.red { background: #EA3D33; }
.button-51.green { background: #7ED321; }
.button-51.blue { background: #4A90E2; }
.button-51:before, .button:after {
  content: '';
  display: block;
  position: absolute;
  left: 2px;
  right: 2px;
  height: 3px;
}

.button-51:hover {
background: rgb(170,170,170);
transition: background 250ms;  
}

.button-51:active  {
background: rgb(170,200,170);
transition: background 100ms; 

}


.button-51:before {
  top: 0;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  background: rgba(255,255,255,.6);
  box-shadow: 0 1px 2px 0 rgba(255,255,255,.6);
}
.button-51:after {
  bottom: 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  background: rgba(0,0,0,.15);
  box-shadow: 0 -1px 2px 0 rgba(0,0,0,.15);
}



.pivot_center {
  transform: translate(-50%, -50%)
}


/* https://getcssscan.com/css-buttons-examples */
/* <div class="button-72" style="display: inline-block;">☰ Menu</div> */
.button-72 {
  align-items: center;
  background-color: initial;
  background-image: linear-gradient(rgba(99, 99, 99, 0.84), rgba(59, 59, 59, .84) 50%);
  border-radius: 25px;
  border-width: 0px;
  box-shadow: rgba(59, 59, 59, 0.24) 0 2px 2px,rgba(30, 30, 30, 0.4) 0 4px 6px;
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  font-family: Quicksand,sans-serif;
  font-size: 16px;
  font-weight: 700;
  justify-content: center;
  letter-spacing: .04em;
  line-height: 16px;
  margin: 0;
  padding: 8px 8px;
  text-align: center;
  text-decoration: none;
  /*
  text-shadow: rgba(255, 255, 255, 0.4) 0 0 4px,rgba(255, 255, 255, 0.2) 0 0 12px,rgba(57, 31, 91, 0.6) 1px 1px 4px,rgba(57, 31, 91, 0.32) 4px 4px 16px;
  */
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;

  /*transition: all 250ms;  */

  text-shadow: 1px 0 #333, -1px 0 #333, 0 1px #333, 0 -1px #333,
  1px 1px #333, -1px -1px #333, 1px -1px #333, -1px 1px #333;



  transition: font-size 250ms, left 250ms;


}

.button-72:hover {
  /*background-image: radial-gradient(rgb(43, 128, 97), rgb(54, 160, 122) 80%);*/
  background: rgb(43, 128, 97);
  opacity: 100%;
  transition: all 250ms;  
  
  text-shadow: 1px 0 #333, -1px 0 #333, 0 1px #333, 0 -1px #333,
  1px 1px #333, -1px -1px #333, 1px -1px #333, -1px 1px #333;


}

.button-72:active {

  background: rgb(47, 140, 106);
  transition: all 100ms;  

}



.button-72 img {
  margin-top: 0px; 
  margin-bottom: 0px; 
  margin-right: 8px;
}


/* qd o tal botao está ativo (verdinho) */
.button-72[standby] {
 
  /*background-image: linear-gradient(rgba(2, 158, 31, 0.84), rgba(2, 97, 38, 0.84) 50%);*/
  transition: all 200ms;  
  animation: colorPulse_yellow 3s infinite alternate


}


/* qd o tal botao está ativo (verdinho) */
.button-72[enabled] {
 
  /*background-image: linear-gradient(rgba(2, 158, 31, 0.84), rgba(2, 97, 38, 0.84) 50%);*/
  transition: all 200ms;  
  animation: colorPulse_green 3s infinite alternate


}

/* animação do botao pulsar um tom mais claro da cor*/
@keyframes colorPulse_green {
  0% {background-image: linear-gradient(rgba(2, 158, 31, 0.84), rgba(2, 97, 38, 0.84) 50%);}
 40% {background-image: linear-gradient(rgba(2, 158, 31, 0.84), rgba(2, 97, 38, 0.84) 50%);background-color: initial;}
 50% {background-color: white;}
 60% {background-image: linear-gradient(rgba(2, 158, 31, 0.84), rgba(2, 97, 38, 0.84) 50%);background-color: initial;}
100% {background-image: linear-gradient(rgba(2, 158, 31, 0.84), rgba(2, 97, 38, 0.84) 50%);}
}


@keyframes colorPulse_yellow {
  0% {background-image: linear-gradient(rgba(158, 155, 2, 0.84), rgba(97, 95, 2, 0.84) 50%);}
 40% {background-image: linear-gradient(rgba(158, 155, 2, 0.84), rgba(97, 95, 2, 0.84) 50%);;background-color: initial;}
 50% {background-color: white;}
 60% {background-image: linear-gradient(rgba(158, 155, 2, 0.84), rgba(97, 95, 2, 0.84) 50%);background-color: initial;}
100% {background-image: linear-gradient(rgba(158, 155, 2, 0.84), rgba(97, 95, 2, 0.84) 50%);}
}



/*
  Tamanho grande do botao
*/
@media (min-width: 1280px) {
  .button-72 {
    font-size: 21px;
    padding: 12px 18px;
    
  }

  .button-72 img {
    margin-right: 8px;
  }
  
}



/*
  Tamanho minimo do botão (apenas icones)
*/
@media (max-width: 900px) {
  .button-72 {
    font-size: 0px;
    padding: 6px 6px;
  }
  .button-72 img {
    margin-right: 0px;
  }
  
}



/* https://getcssscan.com/css-buttons-examples */
.button-25 {
  background-color: #36A9AE;
  background-image: linear-gradient(#37ADB2, #329CA0);
  border: 1px solid #2A8387;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.12) 0 1px 1px;
  color: #FFFFFF;
  cursor: pointer;
  display: block;
  font-family: -apple-system,".SFNSDisplay-Regular","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 17px;
  line-height: 100%;
  margin: 0;
  outline: 0;
  padding: 11px 15px 12px;
  text-align: center;
  transition: box-shadow .05s ease-in-out,opacity .05s ease-in-out;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: 100%;
}

.button-gray {
  background-color: #298388;
  background-image: linear-gradient(#267d80, #22696b);
}


.button-25:hover {
  box-shadow: rgba(255, 255, 255, 0.3) 0 0 2px inset, rgba(0, 0, 0, 0.4) 0 1px 2px;
  text-decoration: none;
  transition-duration: .15s, .15s;
  background-image: linear-gradient(#3bbbc0, #37adb1);

}

.button-25:active {
  box-shadow: rgba(0, 0, 0, 0.15) 0 2px 4px inset, rgba(0, 0, 0, 0.4) 0 1px 1px;
  background-image: linear-gradient(#46dadf, #43d0d4);

}

.button-25:disabled {
  cursor: not-allowed;
  opacity: .6;
}

.button-25:disabled:active {
  pointer-events: none;
}

.button-25:disabled:hover {
  box-shadow: none;
}


/* ------------------------ */

/* Elementos lado a lado em um div flex*/
.flex-container {
  display: flex;
}

.flex-child {
  flex: 1;
  border: 0px solid black;
  text-align: center;
}  



.hover_shadow:hover {
  box-shadow: 0px 0px 5px green; 
  transition: all 200ms;  
}

/* --------------------------- */

.fadeEffect {
  animation: fadeEffect 0.25s;
}

/* Fade in tabs */
@-webkit-keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}