body.react-confirm-alert-body-element {
    overflow: hidden;
}

.react-confirm-alert-blur {
    filter: url(#gaussian-blur);
    filter: blur(2px);

    -webkit-filter: blur(2px);
}

.react-confirm-alert-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    background: rgba(0, 0, 0, 0.5);
    -webkit-animation: react-confirm-alert-fadeIn 0.5s 0.2s forwards;
    animation: react-confirm-alert-fadeIn 0.5s 0.2s forwards;
    opacity: 0;

    -moz-animation: react-confirm-alert-fadeIn 0.5s 0.2s forwards;
    -o-animation: react-confirm-alert-fadeIn 0.5s 0.2s forwards;
}

.react-confirm-alert-body {
    width: 600px;
    padding: 0;
    margin: 30px auto;
    color: #666;
    text-align: left;
    background: #fff;
    box-shadow: 0 20px 75px rgba(0, 0, 0, 0.13);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    border-radius: 4px;
}
.react-confirm-alert-message {
    padding: 15px;
}

.react-confirm-alert-svg {
    position: absolute;
    top: 0;
    left: 0;
}

.react-confirm-alert-body > h1 {
    padding: 15px;
    color: #fff;
    background-color: #a1388d;
    border-bottom: 1px solid #e5e5e5;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
}

.react-confirm-alert-body > h3 {
    margin: 0;
    font-size: 16px;
}

.react-confirm-alert-button-group {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}

.react-confirm-alert-button-group > button {
    display: inline-block;
    padding: 6px 12px;
    margin-right: 5px;
    margin-bottom: 0;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    background-color: #fff;
    background-image: none;
    border: 1px solid transparent;
    border-color: #ccc;
    border-radius: 4px;
    outline: none;
    transition: 500ms all;
    cursor: pointer;
}
.react-confirm-alert-button-group > button:last-child {
    margin-right: 0;
}
.react-confirm-alert-button-group > button:hover {
    color: #333;
    text-decoration: none;
}
.react-confirm-alert-button-group > button:focus {
    color: #333;
    background-color: #e6e6e6;
    box-shadow: inset 0 3px 5px rgba(0,0,0,0.125);
    border-color: #8c8c8c;
}
.react-confirm-alert-button-group > button:hover {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad;
}

@-webkit-keyframes react-confirm-alert-fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-moz-keyframes react-confirm-alert-fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-o-keyframes react-confirm-alert-fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes react-confirm-alert-fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
