/* ********* POPUP */

.popup {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 150;
    background: #0A0A0A;
    display: none;
}
  
.icono-popup {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    margin: 0 calc(50% - 30px);
    margin-top: 30vh;
    z-index: 99;
    border: 4px solid #fff;
    color: #fff;
    font-size: 40px;
    border-radius: 1000px;
}
  
.mensaje-popup {
    width: 95%;
    height: auto;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    color: #fff;
    margin: 0 auto;
    margin-top: 20px;
}
  
.btn-popup {
    width: 160px;
    height: 40px;
    line-height: 40px;
    background-color: transparent;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    border: 2px solid #fff;
    color: #fff;
    margin: 25px calc(50% - 80px);
    cursor: pointer;
    border-radius: 5px;
}