.modal {
    position: relative;
    width: 400px;
    height: 210px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 4px 8px 12px 0 rgba(0, 0, 0, 0.4);
    /* text-align: center; */
    overflow: hidden;
    -webkit-animation: show-modal 0.7s ease-in-out;
    animation: show-modal 0.7s ease-in-out;
}

.title {
    margin-top: 24px;
    /* display: block;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    margin: 14px 0 5px 0; */
}

.modal .title {
    display: block;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    margin: 14px 0 5px 0;
}

.modal p {
    font-size: 14px;
    font-weight: 300;
    line-height: 19px;
    margin: 0;
    padding: 0 30px;
    margin-top: 10px;
}

.modal .button-error {
    position: absolute;
    height: 40px;
    bottom: 0;
    left: 0;
    right: 0;
    background: #D73A49;
    color: #fff;
    line-height: 40px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.modal .button-info {
    position: absolute;
    height: 40px;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0366D6;
    color: #fff;
    line-height: 40px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.modal .button-success {
    position: absolute;
    height: 40px;
    bottom: 0;
    left: 0;
    right: 0;
    background: #28A745;
    color: #fff;
    line-height: 40px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}