@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,400;0,700;1,400&display=swap');
*{
    padding: 0;
    margin: 0;
  
}

/* html, body{
    height: 100%;
    width: 100%;
} */


.container{
    width: 100%;
    height: 100%;
}


.dialogue-container{

    /* z-index: 999;
    background-color: black;
    background-color: rgba(0, 0, 0, 0.4);
    display: block;
    position: fixed;
    margin: auto;
    width: 100%;
    height: 100%;
    left: 0;
    top:0;
    transition: 1.5s; */


    opacity: 1;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    /* padding-top: 100px; */
    background-color: black;
    background-color: rgba(0, 0, 0, 0.4);
    background: url('../images/seacrest-net-bg.jpg');
    background-size:cover;
    background-repeat: no-repeat;
    -webkit-transition: 0.5s;
    overflow: auto;
    transition: all 0.3s linear;
}


.dialogue{
    transition: 1.5s;
    font-size: 18px;
    background-color: #fefefe;
    height: 75%;
    width: 65%;
    margin: auto;
    padding:20px;
    margin-top: 10px;
    border-radius: 5px;
    overflow: auto;
   
    
}

.dialogue-header{
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2vw;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items:center;
}

.dialogue-content{
    display: block;
    position: relative;
    height: 60%;
    display:block;
    overflow: auto;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    padding: 20px;
}



/* .dialogue-footer{
    position: relative;
} */

.dialogue-footer > ul{
    position: relative;
    overflow: auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    flex-direction: row;
    
}



.dialogue-footer > ul > li{
    font-size: 1vh;
    font-size: 1vw;
    list-style: none;
    margin-top: 10px;
    margin-right: 5px;
    border: 1px solid black;
    border-radius: 3px;
    padding: 5px;
    cursor: pointer;
}

#continue-button{

    font-family:'Poppins', sans-serif;
    font-weight: 700;
    background-color: rgb(223, 82, 82);
    color: white;
    transition: 0.5s;
    
}


#continue-button:hover{
    background-color: rgb(175, 67, 67);
    transition: 0.5s;
    
}




.is-blurred{
    
    filter:blur(2px);
}



.closed{
    
    opacity: 0;
    transition: 1s; 
   
}


.hidden{
    display: none;
}
