body.stop-scrolling {
    height: 100%;
    overflow: hidden;
}

.sweet-overlay {
    background-color: black;
    /* IE8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    /* IE8 */
    background-color: rgba(0, 0, 0, 0.4);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: none;
    z-index: 10000;
}

.sweet-alert {
    background-color: white;
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    width: 478px;
    padding: 1em 2em;
    text-align: center;
    position: fixed;
    left: 50%;
    top: 45%;
    margin-left: -256px;
    overflow: hidden;
    display: none;
    z-index: 99999;
}

@media all and (max-width: 540px) {
    .sweet-alert {
        width: auto;
        margin-left: 0;
        margin-right: 0;
        left: 15px;
        right: 15px;
    }
}

.sweet-alert h2 {
    color: #000;
    font-size: 1.2em;
    text-align: center;
    font-weight: bold;
    text-transform: none;
    position: relative;
    margin: .5em 0;
    padding: 0;
    display: block;
}

.sweet-alert p {
    color: #000;
    font-size: 1em;
    text-align: center;
    font-weight: normal;
    position: relative;
    text-align: inherit;
    float: none;
    margin: 0;
    padding: 0;
    line-height: normal;
}

.sweet-alert fieldset {
    border: none;
    position: relative;
}

.sweet-alert .sa-error-container {
    display: none;
}

.sweet-alert .sa-error-container.show {
    display: block;
}

.sweet-alert .sa-error-container .icon {
    display: none;
}

.sweet-alert .sa-error-container p {
    display: block;
    margin: -2em 0 1.2em 1.2em;
    padding: 0;
    text-align: left;
    font-style: normal;
    font-size: 0.785em;
    line-height: 1.35em;
    color: rgba(231, 76, 60, 1.0);
}

.sweet-alert .sa-input-error {
    display: none;
}

.sweet-alert input {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100%;
    height: 1.75em;
    margin-bottom: 1em;
    padding: 0.15em;
    outline: none;
    border-width: 1px;
    border-style: solid;
    background: #fff;
    font: 1em/1.45 'Open Sans', Helvetica, Arial, sans-serif;
    color: #000;
    appearance: normal;
    -moz-appearance: none;
    -webkit-appearance: none;
    border-color: rgba(189, 195, 199, 1.0);
    -ms-transition: border-color 0.3s;
    -moz-transition: border-color 0.3s;
    -webkit-transition: border-color 0.3s;
    display: none;
}

.sweet-alert input:hover {
    border-color: rgba(149, 165, 166, 1.0);
}

.sweet-alert input:focus {
    border-color: rgba(52, 152, 219, 1.0);
}

.sweet-alert.show-input input {
    display: block;
}

.sweet-alert button {
    background-color: rgba(52, 152, 219, 1.0);
    color: #fff;
    border: none !important;
    box-shadow: none !important;
    font: 14px/1.45 'Open Sans', Helvetica, Arial, sans-serif;
    font-weight: normal;
    padding: 0 0.75em;
    height: 1.75em;
    margin-left: 0;
    cursor: pointer;
}

.sweet-alert button+button {
    margin-left: 0.75em;
}

.sweet-alert button:hover {
    background-color: rgba(41, 128, 185, 1.0)
}

.sweet-alert button.cancel {
    background-color: rgba(189, 195, 199, 1.0)
}

.sweet-alert button.cancel:hover {
    background-color: rgba(149, 165, 166, 1.0)
}

.sweet-alert button::-moz-focus-inner {
    border: 0;
}

.sweet-alert[data-has-cancel-button=false] button {
    box-shadow: none !important;
}

.sweet-alert[data-has-confirm-button=false][data-has-cancel-button=false] {
    padding-bottom: 40px;
}

.sweet-alert .sa-icon {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 2em;
    height: 100%;
}

.sweet-alert .sa-icon:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 1.575em;
    height: 1.575em;
    line-height: 1.575em;
    font-size: 1.25em;
    font-family: 'entypo';
    font-style: normal;
    color: #fff;
}

.sweet-alert .sa-icon * {
    display: none;
}

.sweet-alert .sa-icon.sa-error {
    background-color: #e74c3c;
}

.sweet-alert .sa-icon.sa-error:after {
    content: "\e64b";
}

.sweet-alert .sa-icon.sa-warning {
    background-color: #e67e22;
}

.sweet-alert .sa-icon.sa-warning:after {
    content: "\e73f";
}

.sweet-alert .sa-icon.sa-info {
    background-color: #3498db;
}

.sweet-alert .sa-icon.sa-info:after {
    content: "\e6af";
}

.sweet-alert .sa-icon.sa-success {
    background-color: #2ecc71;
}

.sweet-alert .sa-icon.sa-success:after {
    content: "\e639";
}

.sweet-alert .sa-icon.sa-custom {
    background-color: #bdc3c7;
}
