#be-popup {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999999;
    justify-content: center;
    align-items: center;
}
.be_popup_overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99998;
    cursor: pointer;
}
.popup-content-box {
    background: #fff;
    padding: 40px;
    width: 446px;
    max-width: 100%;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    position: relative;
    z-index: 99999;
}
#be-popup .popup-header {
    display: flex;
    justify-content: space-between;
    postion: relative;
}
#be-popup .img{
    padding: 15px 0;
}
#be-popup .popup-header #popup-tabs span {
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
    color: #0B0B0C;
    margin-right: 16px;
}
#be-popup .popup-header #popup-close{
    cursor: pointer;
}
#be-popup .popup-header #popup-tabs span.active{
    text-decoration: underline;
}
#popup-tabs button {
    padding: 8px 15px;
    margin: 0 5px;
    border: none;
    background: #eee;
    cursor: pointer;
    border-radius: 4px;
}
#popup-tabs button.active {
    background-color: #333;
    color: #fff;
}
body.be-popup-open {
    overflow: hidden;
}
#be-popup .popup-content > p{
    font-size: 18px;
    line-height: 28px;
    color: #0B0B0C;
    margin: 0 0 24px;
    font-weight: 600;
}
#be-popup .popup-content ul li {
    font-size: 14px;
    line-height: 20px;
    color: #0B0B0C;
    font-weight: 400;
    text-align: left;
    list-style: square inside;
}
#be-popup .popup-content ul li strong{
    font-weight: 700;
}
#be-popup .popup-content ul{
    margin-bottom: 40px;
}
#be-popup .popup-content a{
    display: block;
    width: 100%;
    background: #F2F2F2;
    color: #0B0B0C;
    font-size: 14px;
    line-height: 24px;
    padding: 8px 0;
    border-radius: 0;
    font-weight: 600;
}
#be-popup .popup-content a:first-of-type{
    margin-bottom: 16px;
    background: #0B0B0C;
    color: #fff;
}
#be-popup .popup-content a:hover{
    background: #E6E6E6;
}
#be-popup .popup-content a:first-of-type:hover{
    background: #333333;
}