/*
.loading {
  height: 0;
  width: 0;
  padding: 15px;
  border: 6px solid #ccc;
  border-right-color: #888;
  border-radius: 22px;
  -webkit-animation: rotate 1s infinite linear;
  /* left, top and position just for the demo! * /
  position: absolute;
  left: 50%;
  top: 50%;
}

@-webkit-keyframes rotate {
  /* 100% keyframe for  clockwise. 
     use 0% instead for anticlockwise * /
  100% {
    -webkit-transform: rotate(360deg);
  }
}
*/
.popup {
	/*margin: 70px auto;*/
	padding: 0px 20px 0px 0px;
	background: #fff;
	border-radius: 5px;
	width:600px;
	text-align: center;
	position: fixed;
	top: 35%;
	left: 50%;
	transform: translate(-50%, -50%);
	overflow: hidden; /* Garante que nada vaze */
	max-width: 90vw; /* Para evitar estouro em telas pequenas */
	max-height: 90vh; /* Para limitar a altura da imagem */
}
	 
.button-base:hover{
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.3);  
}
.button-base{
	font-family: 'Roboto', sans-serif;
    -webkit-appearance: none;
    border: none;
    text-transform: none;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: #000;
    color: #fff;
    vertical-align: middle;
    border-radius: 3px;
    line-height: 36px;
    min-height: 46px;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    min-width: 21.50em;
    padding: 0 1em;
    margin: 10px;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.37);
}
