.dbv-modal__bg {
    position: fixed;
    z-index: 9999;
    height: 100%;
    width: 100%;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: none;
    background-color: rgba(0, 0, 0, 0.3);
}

.dbv-modal {
    position: fixed;
    z-index: 9999;
    margin: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 480px;
    min-height: 280px;
    height: auto;

    background-color: white;
}

@media only screen and (max-width: 480px) {
    .dbv-modal {
        position: fixed;
        z-index: 9999;
        margin: auto;
        /*top: 480px;*/
        /*left: 480px;*/
        /*transform: translate(50%, 50%);*/
        /*-ms-transform: translate(50%, 50%);*/
        width: 100%;
        height: 100%;

        background-color: white;
    }

}

.dbv-modal__title {
    padding: 4px;
    height: auto;
    color: white;
}

.dbv-modal__content {
    text-align: center;
    margin: auto;
    display: block;
    background-color: white;
    width: 100%;
}

.dbv-modal__title-text {
    display: inline-block;
    font-size: 15px;
    vertical-align: top;
    text-align: left;
    width: 94%;
}

.dbv-modal__title-button {
    display: inline-block;
    font-size: 15px;
    vertical-align: top;
    text-align: right;
    width: 6%;
}


