
/*Cronometro*/
@font-face {
  font-family: Cinzel;
  src: url('../fonts/Cinzel-Regular.otf')
}
#countdown{
    width: 80%;
    height: 100px;
    text-align: center;
    border-radius: 5px;
    margin: auto;
    padding: 24px 0;
    position: relative;
    top: 0; bottom: 0; left: 0; right: 0;
    margin-bottom: 30px;
  }
  input {
    padding: 5px;
    width: 200px;
}
button {
    padding: 5px;
    cursor: pointer;
}
.resultado-busca {
    margin-top: 10px;
    cursor: pointer;
  
}
.convidado-item {
    background: #fff;
    padding: 10px 40px;
    border-radius: 10px;
    font-weight: 500;
    margin-top: 10px;
}
.confirmacao-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    z-index: 1000;
    text-align: justify;
    border-radius: 20px;
    width: 90%;
}
#acompanhantes-checkboxes {
  margin-bottom: 10px ;
}
#convidadosTable {
  margin-bottom: 20px;
}
#convidadosTable tr {
  border-top-width: 2px;
  border-bottom-width: 2px;
  border-color: #fff;
}
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
.nome-convidado-lista {
  padding: 4px 5px;
}

.AcompRed {
  background-color: #f8d7da;
  padding: 4px 5px;
}
.Acomp {
  padding: 4px 5px;
}
  /*#countdown:before{
    content:"";
    width: 8px;
    height: 65px;
    background: #444;
    background-image: -webkit-linear-gradient(top, #555, #444, #444, #555); 
    background-image:    -moz-linear-gradient(top, #555, #444, #444, #555);
    background-image:     -ms-linear-gradient(top, #555, #444, #444, #555);
    background-image:      -o-linear-gradient(top, #555, #444, #444, #555);
    border: 1px solid #111;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    display: block;
    position: absolute;
    top: 48px; left: -10px;
  }
  
  #countdown:after{
    content:"";
    width: 8px;
    height: 65px;
    background: #444;
    background-image: -webkit-linear-gradient(top, #555, #444, #444, #555); 
    background-image:    -moz-linear-gradient(top, #555, #444, #444, #555);
    background-image:     -ms-linear-gradient(top, #555, #444, #444, #555);
    background-image:      -o-linear-gradient(top, #555, #444, #444, #555);
    border: 1px solid #111;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    display: block;
    position: absolute;
    top: 48px; right: -10px;
  }*/
  
  #countdown #tiles{
    position: relative;
    z-index: 1;
  }
  
  #countdown #tiles > span{
    width: 15%;
    max-width: 92px;
    font-family: Cinzel;
    font-weight: bold;
    font: 30px 'Cinzel', Arial, sans-serif;
    text-align: center;
    color: #fff;
    /*background-color: #fff;
    border-top: 1px solid #fff;*/
    border-radius: 3px;
    margin: 0 7px;
    padding: 18px 0;
    display: inline-block;
    position: relative;
  }
  /*
  #countdown #tiles > span:before{
    content:"";
    width: 100%;
    height: 13px;
    background: #111;
    display: block;
    padding: 0 3px;
    position: absolute;
    top: 41%; left: -3px;
    z-index: -1;
  }*/
  
  #countdown #tiles > span:after{
    content:"";
    width: 100%;
    height: 1px;
   /* background: #eee;
    border-top: 1px solid #000;*/
    display: block;
    position: absolute;
    top: 48%; left: 0;
  }
  
  #countdown .labels{
    width: 100%;
    height: 25px;
    text-align: center;
    position: absolute;
    bottom: 4px;
  }
  
  #countdown .labels li{
    width: 15%;
    font: 15px 'Cinzel', Arial, sans-serif;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    display: inline-block;
    padding: 18px 0;
    margin: 0 7px;
  }
  /*Cronometro*/