.bread{
    min-height: 220px;
    width: 320px;
    background-color: antiquewhite;
    box-shadow: 5px 5px 1px gray;
    position: fixed;
    left: 50%;
    top: 50%;
    margin-top: -110px;
    margin-left: -160px;
    line-height: 30px;
    display: none;
    z-index: 9999;
}
.bread-content{
    padding: 20px;
    align-self: center!important;
    width: 320px;
    text-align: center;
}
.close-button{
    position: absolute;
    width: 60px;
    height: 30px;
    background-color: lightyellow;
    right: 20px;
    bottom: 20px;
    text-align: center;
    cursor: pointer;
    border-radius: 5px;
}
.close-button:hover{
    background-color: orange;
}
.choice-box{
    position: absolute;
    width: 100%;
    height: 30px;
    line-height: 30px;
    bottom: 0px;
    display: none;
    border-top: 1px solid black;
}
.choice-item{
    flex: 1;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
}
.choice-item:first-child{
    border-right: 1px solid black;
}
.choice-item:hover{
    background-color: orange;
}