﻿.notify-wrap {
    position: relative;
    width: 100%;
    height: 100vh;
}

.notify-wrap {
    display: block;
    width: 800px;
    height: 180px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.14) 0px 0px 21px 3px;
    position: absolute;
    top: 30%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    overflow: hidden;
    zoom: 1;
    padding: 20px 30px;
    font-size: 20px;
    line-height:32px;
}

    .notify-wrap .header {
        text-align: center;
        font-size: 26px;
        font-weight: 700;
    }

    .notify-wrap .content {
        padding: 10px 0;
        text-indent: 2em;
        text-align: center;
    }

.notify-wrap .footer {
    width: 100%;
    color: #fff;
    overflow: hidden;
    zoom: 1;
    text-align: center;
}

.notify-wrap .btn {
    width: 80px;
    height: 40px;
    font-size: 16px;
}

.notify-wrap .footer .btn {
    padding: 0;
    border-radius: 0;
}

.notify-wrap .footer .btn+.btn {
    margin-left: 19px;
}

.notify-wrap .footer .btn-primary-gray_1 {
    color: #323232;
    background-color: #ddd;
}

.notify-wrap .footer .btn-primary-gray_1:hover {
    background-color: #ccc;
    transition: all 0.3s ease;
}

.notify-wrap .footer .btn-primary_1 {
    margin-right: 0;
    color: #fff;
    background-color: #00C4E1;
}

.notify-wrap .footer .btn-primary_1:hover,
.notify-wrap .footer .btn-primary_1:focus {
    background-color: #03B2CB;
    color: #fff;
    transition: all 0.3s ease;
}