/* ----- ----- ----- ----- */


* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0; }
  
.mac {

    font-family: "GothamBook";
    src: url("GothamBook.woff") format("woff"), url("GothamBook.ttf")  format("truetype");
    font-size: 18px;
    border: none;
    border-radius: 20px;
    padding: 5px 8px;
    color: #333;
    box-shadow: 
        inset 0 2px 0 rgba(0,0,0,.2), 
        0 4px 4px rgba(0,0,0,0.1);
}

.mac:focus {
    outline: none;
    box-shadow: 
        inset 0 2px 0 rgba(0,0,0,.2), 
        0 0 4px rgba(0,0,0,0.1), 
        0 0 5px 1px #51CBEE;
}

@font-face {
    font-family: "myfont";
    src: url("GothamBook.woff") format("woff"), url("GothamBook.ttf")  format("truetype");
    font-weight: bold;
    font-size: 18px;
}

.mydiv {
    font-family: myfont
}
body {
  font-size: 18px;
  background: #fff;
/*  font-family: "Roboto"; */
    font-family: "GothamBook";
    src: url("GothamBook.woff") format("woff"), url("GothamBook.ttf")  format("truetype");
  
  }
  

a {
  color: #FF4136; }

.wrap {
  width: 90%;
  max-width: 1000px;
  margin: auto; }

.info {
  text-align: center;
  padding: 20px;
  color: #001F3F;
  border-bottom: 1px solid #ccc; }
  .info p {
    margin-top: 20px; }

.formulario {
  /* --------------------------------------- */
  /* ----- Radio Button */
  /* --------------------------------------- */
  /* --------------------------------------- */
  /* ----- Checkbox */
  /* --------------------------------------- */ }
  .formulario h2 {
    font-family: GothamBook;
    src: url("GothamBook.woff") format("woff"), url("GothamBook.ttf")  format("truetype");

    font-size: 18px;
    color: #001F3F;
    margin-bottom: 20px;
    margin-left: 20px; }
  .formulario > div {
    padding: 20px 0;
    border-bottom: 1px solid #ccc; }
  .formulario .radio label,
  .formulario .checkbox label {
    display: inline-block;
    cursor: pointer;
    color: #00CCFF;
   background: rgba(0,0,0,.1); position: relative;
    padding: 5px 15px 5px 15px;
    font-size: 1em;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    .formulario .radio label:hover,
    .formulario .checkbox label:hover {
      background: rgba(255, 65, 54, 0.1); }
 
  .formulario input[type="radio"] {
    display: none; }
    .formulario input[type="radio"]:checked + label:before {
      display: none; }
    .formulario input[type="radio"]:checked + label {
      padding: 5px 15px;
      background: #00CCFF;
      border-radius: 2px;
      color: #fff; }
  .formulario .checkbox label:before {
    border-radius: 3px; }
  .formulario .checkbox input[type="checkbox"] {
    display: none; }
    .formulario .checkbox input[type="checkbox"]:checked + label:before {
      display: none; }
    .formulario .checkbox input[type="checkbox"]:checked + label {
      background: #00CCFF;
      color: #fff;
      padding: 5px 15px; }
      


