
/*
* Modalzinha.js
*
* by Fernando Soares (dotfernando@gmail.com)
* github.com/ferspeak/modalzinha-js
*
*/


.modal-wrapper {
  width: 100%;
  height: 100%;
  min-height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,.7);
  transition: .4s;
  visibility: hidden;
  opacity: 0;
  z-index: 100;
}

.modal-content {
  max-width: 400px;
  width: 100%;
  position: absolute;
  top: 30%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 10;
  background-color: #ffffff;
  border-radius: 5px;
  color: #fff;
}

.modal-opened {
  opacity: 1;
  visibility: visible;
}

.fechar-modal {
  position: absolute;
  right: -10px;
  top: -10px;
  background: #CCC;
  border-radius: 30px;
  width: 30px;
  height: 30px;
  font-size: 20px;
  line-height: 20px;
  cursor: pointer;
  border: none
  
}
.text { padding:20px; font-weight:200;}
body {font-family:'Roboto'}