.bp-promt-upper{
    display:flex;
    position:fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    background: #000000aa;
}

.bp-promt{
    box-sizing: border-box;
    background-color: var(-color);
    z-index: 99;
    border-radius: 10px;
    border-style: dashed;
    border-width: 3px;
    border-color: #fff;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    padding: 50px;
    max-height: 50vh;
    min-width: 50vw;;
}

.bp-promt>*{
    margin: 10px;
    color: white;
}

.bp-promt>input[type="text"]{
    color: black;
    text-align: center;
    font-size: 26px;
    width: 100%;
}

.bp-promt-text{
    font-size: 28px;
}

.bp-promt-button-wrapper{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
}
.bp-promt-button-wrapper>*{
    border: 2px dashed white;
    border-radius: 10px;
    padding: 15px;
    cursor: default;
}
.bp-promt-button-wrapper>*:hover{
    color: var(--color);
    background-color: white;
    border-style: solid;
    
}
.bp-promt-list{
    max-height: 100%;
    overflow-y: scroll;
    width: 100%;
}

.bp-promt-list>*{
    border: 2px dashed white;
    margin: 5px;
    padding: 7px;
    font-size: 26px;
    border-radius: 5px;
    text-align: center;
    cursor: default;
}
.bp-promt-list>*:hover{
    color: var(--color);
    background-color: white;
    border-style: solid;
}