.modal-success.success-small, .modal-warning.warning-small, .modal-danger.danger-small, .modal-info.info-small {
    color: #636363;
    width: 300px;
    margin: 30px auto;
}
.modal-success.success-medium, .modal-warning.warning-medium, .modal-danger.danger-medium, .modal-info.info-medium {
    color: #636363;
    width: 400px;
    margin: 30px auto;
}
.modal-success.success-large, .modal-warning.warning-large, .modal-danger.danger-large, .modal-info.info-large {
    color: #636363;
    width: 600px;
    margin: 30px auto;
}
.modal-success .modal-content, .modal-warning .modal-content, .modal-danger .modal-content, .modal-info .modal-content {
    padding: 20px;
    border-radius: 5px;
    border: none;
}
.modal-success .modal-header, .modal-warning .modal-header, .modal-danger .modal-header, .modal-info .modal-header {
    border-bottom: none;
    position: relative;
}
.modal-success h4, .modal-warning h4, .modal-danger h4, .modal-info h4 {
    text-align: center;
    font-size: 26px;
    margin: 30px 0px -15px;
}
.modal-success .form-control, .modal-success .btn, .modal-warning .form-control, .modal-warning .btn .modal-danger .form-control, .modal-danger .btn, .modal-info .form-control, .modal-info .btn {
    min-height: 40px;
    border-radius: 3px;
}
.modal-success .close, .modal-warning .close, .modal-danger .close, .modal-info .close {
    position: absolute;
    top: -10px;
    right: -5px;
}
.modal-success .modal-footer, .modal-warning .modal-footer, .modal-danger .modal-footer, .modal-info .modal-footer {
    border: none;
    text-align: center;
    border-radius: 5px;
    font-size: 13px;
}
.modal-success .icon-box{
    color: #fff;
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: -70px;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    z-index: 9;
    background: #5cb85c;
    padding: 15px;
    text-align: center;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}
.modal-warning .icon-box {
    color: #fff;
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: -70px;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    z-index: 9;
    background: #f0ad4e;
    padding: 15px;
    text-align: center;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}
.modal-danger .icon-box {
    color: #fff;
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: -70px;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    z-index: 9;
    background: #d9534f;
    padding: 15px;
    text-align: center;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}
.modal-info .icon-box{
    color: #fff;
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: -70px;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    z-index: 9;
    background: #5bc0de;
    padding: 15px;
    text-align: center;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}
.modal-success .icon-box i, .modal-warning .icon-box i, .modal-danger .icon-box i, .modal-info .icon-box i {
    font-size: 58px;
    position: relative;
    top: 3px;
}
.modal-success.modal-dialog, .modal-warning.modal-dialog, .modal-danger.modal-dialog, .modal-info.modal-dialog {
    margin-top: 80px;
}
.modal-success .btn-success {
    color: #fff;
    border-radius: 4px;
    background: #5cb85c;
    text-decoration: none;
    transition: all 0.4s;
    line-height: normal;
    border: none;
}
.modal-warning .btn-warning {
    color: #fff;
    border-radius: 4px;
    background: #f0ad4e;
    text-decoration: none;
    transition: all 0.4s;
    line-height: normal;
    border: none;
}
.modal-danger .btn-danger {
    color: #fff;
    border-radius: 4px;
    background: #d9534f;
    text-decoration: none;
    transition: all 0.4s;
    line-height: normal;
    border: none;
}
.modal-info .btn-info {
    color: #fff;
    border-radius: 4px;
    background: #5bc0de;
    text-decoration: none;
    transition: all 0.4s;
    line-height: normal;
    border: none;
}
.modal-success .btn-success:hover, .modal-success .btn-success:focus {
    background: #5cb85c;
    outline: none;
}
.modal-warning .btn-warning:hover, .modal-warning .btn-warning:focus {
    background: #f0ad4e;
    outline: none;
}
.modal-danger .btn-danger:hover, .modal-danger .btn-danger:focus {
    background: #d9534f;
    outline: none;
}
.modal-info .btn-info:hover, .modal-info .btn-info:focus {
    background: #5bc0de;
    outline: none;
}
.modal-body p {
    margin-top: 15px;
}